早晨,
我需要从我的网络服务返回一条消息。下面是我的代码示例,我正在返回一个字符串。
[web method]
public string CheckFeedSubmission()
{
string responseText = "";
try
{
//Stuff goes here
responseText = "It Worked!"
}
catch (Exception ex) { responseText = "Opps wehave an error! Exception message:" + ex.Message; }
return responseText ;
}
我目前收到以下回复...
<string xmlns="http://tempuri.org/"/>
理想情况下,我想返回类似的东西
{"success" : true, "message" : "***Message Here***"}
我相信一旦我明白了,如果需要,我将能够退回其他物品。它只是我需要解决的这个基础。
非常感谢所有帮助,在此先感谢:)
更新:刚刚发现这个...
return "{Message:'hello world'}"
我需要类似的东西吗
responseText = "{"success" : true, "message" : \"There has been an error. Message: " + ex.Message + "\"}"