1

我有一个简单的 ajax 发布到服务器..

$(".invite-team-members-submit-btn").click(function() {
  $.post("invite_team_member", { token: $("#token").val(), email: $("#email").val(), team: $("#team").val() })
    .done(function (responseText) {
      responseText = jQuery.parseJSON(responseText);
      alert(responseText.response);
    })
    .fail(function (data) { alert("ERROR: " + data); })
    .then(function () { alert("Something should happen."); });
});

返回的 JSON 看起来像这样......

{"response":"Person has been invited."}

我在控制台中的响应标题看起来像这样......

Response Headers
  Cache-Control max-age=0, private, must-revalidate
  Connection    close
  Content-Type  application/json; charset=utf-8
  Date  Wed, 22 May 2013 21:45:07 GMT
  Etag  "e5b5e12acbcc78372b2a861027b66c05"
  Status    200 OK
  Transfer-Encoding chunked
  X-Request-Id  d835ce021eff7733d67ebfcdd468bdf2
  X-Runtime 0.007909
  x-ua-compatible   IE=Edge

在我的控制台中,我看到它是服务器并返回了适当的文本,但我的浏览器中没有收到警报。我只是不知道出了什么问题。jQuery 更新了我缺少的东西吗?

4

3 回答 3

6

您使用$.post不正确。您的意思是使用$.ajax并指定该type: "post"属性。

$.post的第一个参数是 URL。在你的情况下,它是一个对象。我认为也许 jQuery 最终会使用当前页面 URL 来发出请求(这就是您看到请求的原因),但我不能确定。您可以将其重写为:

$.post("invite_team_member", {data: data})
    .done(function (responseText) { alert(responseText); })
    .fail(function (data) { alert("ERROR: " + data); });
于 2013-05-22T21:22:58.170 回答
1

使用$.ajax()然后将类型设置为"POST"

于 2013-05-22T21:23:28.200 回答
1

试试这个代码:

mydata = "name=Jon&location=USA";   
$.ajax({
    type : 'POST',
    url :  'myphp.php',
    data : mydata               
}).done(function(msg){
    alert("DONE");
});
于 2013-05-22T21:28:14.880 回答