我想发送一个字符串作为ajax Post参数。如下代码:$.ajax({ type: "POST", url: "http://nakolesah.ru/", data: 'foo=bar&ca$libri=no$libri', success: function(msg){ alert('wow'+msg); }});不管用。为什么?
3 回答
有只小跳蛙
TA贡献1824条经验 获得超8个赞
我发现他们不理解您的问题。答案是:在您的ajax调用中添加“传统”参数,如下所示:
$.ajax({
traditional: true,
type: "POST",
url: url,
data: custom ,
success: ok,
dataType: "json"
});
并且它将与参数“通过”一起使用。
- 3 回答
- 0 关注
- 698 浏览
添加回答
举报
0/150
提交
取消