このリンクに記載されているチュートリアルに従いました。以下のコードでは、何らかの理由でデータがパラメーターとして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");
}
});