0
我有下面的方法的WebService的:
請求體的List <KeyValuePair <字符串,字符串>>
[WebInvoke(Method = "POST", RequestFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Wrapped)]
string PostList(List<string> arr);
方法的RequestBody是:
{"arr" : ["somestring1", "somestring2"]}
現在,我希望再網絡方法如下:
[WebInvoke(Method = "POST", RequestFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Wrapped)]
string PostListKVP(List<KeyValuePair<string, string>> arr);
JS ON RequestBody應該用於此WebMethod?
感謝。
豈不比列表的字典工作做得更好鍵 - 值對? –
嗯..Ok謝謝:) – Evyatar
@DmytroShevchenko不,如果你期望重複鍵:) – vtortola