Tôi đã làm theo hướng dẫn như đã nêu trong liên kết này . Trong mã dưới đây vì một số lý do, dữ liệu không được thêm vào url dưới dạng tham số, nhưng nếu tôi đặt chúng trực tiếp vào url bằng cách sử dụng /?field1="hello"
thì nó hoạt động.
$.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");
}
});