これは私の最初のスタックオーバーフローポストなので、たるみをカットしてください:)。
私はこの問題でかなり長い間苦労してきました。
現在、私のWCFはデータベースからデータを読み取り、それをJSONとして返します。
これはそれがどのように見えるかです:
{
"shoppinglistitemsResult": [
{
"description": "this is my notes description",
"name": "mynotename",
"pid": "1",
"status": "1",
"username": "test"
}
]
}
私はそれをこのように見せたい:
{
"shoppinglistitemsResult": [
{
"description": "123",
"name": "123",
"pid": "123",
"status": "123",
"username": "test"
}
],
"success": 1
}
最後に余分なオブジェクトがあります。
[OperationContract]
[WebInvoke(Method = "GET", ResponseFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Wrapped, UriTemplate = "displayAllNotes?name={username}&pass={password}")]
List<Service1.wsNotes> shoppinglistitems(string username, string password);