使用POST将Ajax变量发送到PHP

时间:2013-11-21 16:13:26

标签: javascript php jquery ajax post

我试图找到在没有GET方法的情况下将变量从Javascript发送到PHP的最佳方法。我找到了一种通过AJAX发送POST方法的方法:

<form method="POST" id="post" enctype="multipart/form-data">
                <input type="file" name="image_upload[]" id="img1" />
                <input type="file" name="image_upload[]" id="img2" />
                <input type="file" name="image_upload[]" id="img3" />
                <input type="text" name="description" id="description" />
                <textarea class="intext" name="editor" id="editor"></textarea>
                <input type="text" name="state" id="state" disabled="true" />
                <input type="text" name="city" id="city" disabled="true" />
                <input type="submit" id="submit" />
            </form>

我正在尝试使用jQuery提交表单:

$('#post').submit(function (event) {
    event.preventDefault();
    $.ajax({
        type: "POST",
        url: "cpage.php",
        data: {
            'variable1': 'content var1',
                'variable2': 'content var2'
        },
        success: function () {
            $('#post'), $('form').unbind('submit').submit();
        },
        error: function (name, err, desc) {
            alert(desc);
        }
    });

注意:变量“ position ”之前已声明并正常工作。

结果:警报中出现“内部服务器错误”。有什么想法吗?

1 个答案:

答案 0 :(得分:0)

首先 - 向我们展示服务器端的内容。

现在关于发送的文件:

你应该使用FormData元素来提交文件提交Ajax,旧浏览器不支持它,支持它的浏览器是:ie&gt; 9,chrome&gt; 7,歌剧&gt; 12 safari&gt; 5,android&gt; 3 gecko mobile&gt; 2,opera mobile&gt; 12.

使用类似的东西:

    $('#post').submit(function (event) {
               event.preventDefault();

        if( window.FormData !== undefined ) //make sure that we can use FormData
        {

            var formData = new FormData($('form#post'));
                        $.ajax({
                                type: "POST",
                                url: "cpage.php",
                                data: formData ,
                                //Options to tell jQuery not to process data or worry about content-type. 
                                cache: false,
                                contentType: false,
                                processData: false,
                                success: function (data) {
                                                       console.log(data); // <- for debugging
                                                       $('#post'), $('form').unbind('submit').submit();
                               },
                               error: function (name, err, desc) {
                                     alert(desc);
                               }
                        });
            } else {
                //fallback 
            }
      });

正如您所看到的,我添加了console.log(data),请尝试查看返回的数据以确定其他任何问题。