1

我正在使用脚本向我的 Django 后端发出简单的发布请求。我希望数据采用 Json 格式。

<input id ="my" type="submit" onclick="me()"/>

<script>
function me()
{
      var data2 =JSON.stringify ({
                      "crave": "romana",
                      "uid": "100",
                      "access_token": "AAA"                     
                  });
    alert(data2);
     $.ajax({
                      url: "http://localhost:8000/trial/",
                      type: 'POST',
                      contentType: "application/x-www-form-urlencoded",
                      data: data2,
                      dataType: 'json',
                      processData: false
                  });

}
</script>

在我打印 request.POST 时的视图中,它显示以下内容

 {u'{"crave":"romana","uid":"100","access_token":"AAA"}': [u'']}
enter code here

我究竟做错了什么?

4

1 回答 1

2

尝试以下操作:

$.ajax({
  type: 'POST',
  url: 'http://localhost:8000/trial/',
  data: data2, // without stringifying
  success: function(res) { }
});

或作为捷径:

data2 = {crave: "romana", uid: "100", access_token: "AAA"}
$.post('http://localhost:8000/trial/', data2, function(res) { });
于 2012-10-22T06:56:33.047 回答