Ajax 繫結
這些是使用 POST 方法在 HTTP 請求中的表單值。 (包括 jQuery POST 請求)。
說你做了一個像 ajax 的帖子
$.ajax({
type: 'POST',
url: window.updatePost,
data: { id: 21, title: 'snappy title' },
//kept short for clarity
});
這裡 json,id 和 title 中的兩個值將繫結到匹配的動作,例如
public JsonResult UpdatePost(int id, string title) {
...
}