$.ajax中contentType: “application/json” 的用法

来源:互联网 发布:中国贫困线知乎 编辑:程序博客网 时间:2024/05/16 03:46

不使用contentType: “application/json”则data可以是对象

$.ajax({url: actionurl,type: "POST",datType: "JSON",data: { id: nodeId },async: false,success: function () {}})

使用contentType: “application/json”则data只能是json字符串

$.ajax({url: actionurl,type: "POST",datType: "JSON",contentType: "application/json"data: "{'id': " + nodeId +"}",async: false,success: function () {}});


0 0
原创粉丝点击