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 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵