dtuzjzs3853 2015-06-12 07:52
浏览 42
已采纳

Jquery使用一个ajax调用发布文件和数据

Hi I have a wordpress php class that receives my ajax and works good. Now i have to upload a file in the same POST request i use to pass parameters to the PHP class ( i have a switch in the class that sends me to the proper function based on the parameters in the POST data ).

this is the code:

$(document).ready(function (e) {


$('#imageUploadForm').on('submit',(function(e) {
    e.preventDefault();
    var formData = new FormData(this);
    var userID = <?php echo get_current_user_id(); ?>; 
    var ajaxurl = '<?php echo admin_url('admin-ajax.php'); ?>';
    var data = {
            'action': 'romme_call',
            'whatever': 1234, 
            'userID': userID,
            'function_call': 'upload_profile_photo',
            **'form_data' : formData**
        };
         console.log(data);
        jQuery.post(ajaxurl, data, function(response) {
            console.log("done");
            console.log(data);
        });

this code will of course return a "Uncaught TypeError: Illegal invocation"

because it does not accept formData as parameter in data.

how can i handle this?

  • 写回答

1条回答 默认 最新

  • dongwu9647 2015-06-12 08:02
    关注

    It returns Illegal invocation because jQuery is trying to parse the form data with $.param.

    When submitting files with jQuery's ajax processing must be turned off

    $('#imageUploadForm').on('submit', (function (e) {
        e.preventDefault();
        var formData = new FormData(this);
        var userID = <? php echo get_current_user_id(); ?> ;
        var ajaxurl = '<?php echo admin_url('admin-ajax.php'); ?>';
    
        formData.append('action', 'romme_call');
        formData.append('whatever', '1234');
        formData.append('userID', userID);
        formData.append('function_call', 'upload_profile_photo');
    
        $.ajax({
            url  : ajaxurl,
            type : 'POST',
            data : formData,
            contentType: false,
            processData: false
        }).done(function(response) {
            console.log("done");
            console.log(data);
        });
    });
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 扩散模型sd.webui使用时报错“Nonetype”
  • ¥15 stm32流水灯+呼吸灯+外部中断按键
  • ¥15 将二维数组,按照假设的规定,如0/1/0 == "4",把对应列位置写成一个字符并打印输出该字符
  • ¥15 NX MCD仿真与博途通讯不了啥情况
  • ¥15 win11家庭中文版安装docker遇到Hyper-V启用失败解决办法整理
  • ¥15 gradio的web端页面格式不对的问题
  • ¥15 求大家看看Nonce如何配置
  • ¥15 Matlab怎么求解含参的二重积分?
  • ¥15 苹果手机突然连不上wifi了?
  • ¥15 cgictest.cgi文件无法访问