複数のオブジェクトをコントローラーに投稿する例はありますか。ajax投稿のデータはどのように見える必要がありますか?
[HttpPost]
public string Register(UserLogin userLogin, Contact contact)
{
}
ユーザーログイン
public class UserLogin
{
public string Username { get; set; }
public string Password { get; set; }
}
コンタクト
public class Contact
{
public string Firstname { get; set; }
public string Lastname { get; set; }
}
アヤックス?
$.ajax({
type: "POST",
url: "SomeUrl"
dataType: "json",
contentType: "application/json; charset=utf-8",
data: ? });