在我的應用程序的默認JSON結果從返回的WebAPI是像這個 -如何從以特定格式的WebAPI JSON響應
[{"Id":1,"Name":"Nayas","Email":"[email protected]"}, {"Id":2,"Name":"Ramesh","Email":"[email protected]"}].
我想這是在下面的格式
{
"success": true,
"users": [
{"id": 1, "name": 'Ed', "email": "[email protected]"},
{"id": 2, "name": 'Tommy', "email": "[email protected]"}
]
}
鍵值對
這裏是我的操作方法
public IEnumerable<User>GetUserList()
{
return userlist;
}
和我的模型
public class User
{
[Key]
public int Id { get; set; }
public string Name { get; set; }
public string Email { get; set; }
}
您可以顯示您的Web API的操作方法以及您要返回的模型的定義嗎? – 2014-12-05 10:22:24
public class User {Key35] public int Id {get;組; } public string Name {get;組; } public string Email {get;組; } } – 2014-12-05 10:26:32
public IEnumerable GetUserList(){return userlist}。我們可以使用keyvalue對 –
2014-12-05 10:27:45