0

我怀疑我有一个丢失的支架,但如果有的话我找不到

$(document).ready(function () {

    $("#additional_info_submit").click(function (e) {
        e.preventDefault();
        jQuery.ajax({
            type: "POST",
            url: "advice_response.php",
            //contentType: "text/json; charset=utf-8",
            dataType: "json",
            data: $('#form').serialize(),
            success: function (response) {
                alert('yay');
            },
            error: function (xhr, ajaxOptions, thrownError) {
                alert(thrownError);
            }
        });
    });
});
4

2 回答 2

0

advice_response.php 上的 json_encode 末尾缺少一个分号。

于 2013-08-28T19:28:58.447 回答
0

我对“PUT”方法有同样的问题,但我使用的是 Web Api 服务器端,所以我必须从这里更改我的 Web Api Controller Put Method:

return Request.CreateResponse(HttpStatusCode.OK);

对此:

return Request.CreateResponse(HttpStatusCode.OK, MyUpdatedObject);
于 2014-02-25T12:32:28.687 回答