我已按照此链接中所述的教程进行操作。在下面的代码中,由于某种原因,数据没有作为参数附加到 url,但是如果我将它们直接设置到 url,则使用/?field1="hello"
它可以工作。
$.ajax({
url: 'superman',
type: 'POST',
data: { field1: "hello", field2 : "hello2"} ,
contentType: 'application/json; charset=utf-8',
success: function (response) {
alert(response.status);
},
error: function () {
alert("error");
}
});