0
jqueryでモデルを宣言し、$ .ajaxでPOSTパラメータとして渡す方法はありますか?jqueryでMVCモデルを宣言し、データパラメータとして渡します。
私は、
public class UserDetail
{
public Role RoleDetail {get;set;}
}
public class Role
{
public int RoleId {get;set;}
}
とJSのように、このようなもの
function postData(id)
{
@{ var model = new UserDetail{ Role = new Role{ RoleId = id};
$.ajax({
type: 'POST',
url: ...
data: JSON.stringify(model)
});
}
任意のアイデアをモデルがありますか?