最佳答案
是否有一个简单的方法来填充我的c#对象与JSON对象通过AJAX传递?
这是使用JSON.stringify从页面传递给c# WEBMETHOD的JSON对象
{
"user": {
"name": "asdf",
"teamname": "b",
"email": "c",
"players": ["1", "2"]
}
}
接收JSON对象的c# webmethod
[WebMethod]
public static void SaveTeam(Object user)
{
}
c#类,表示传递给WebMethod的JSON对象的对象结构
public class User
{
public string name { get; set; }
public string teamname { get; set; }
public string email { get; set; }
public Array players { get; set; }
}