我需要從我的web服務返回一條消息。下面是我的代碼示例,並且我返回一個字符串。
[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***"}
我相信的東西,一旦我得到它的想法,我將能夠返回其他物品,如果需要的話。它只是我需要解決的基礎。
所有幫助非常感謝,提前:)
UPDATE感謝:剛剛發現這個...
return "{Message:'hello world'}"
我會需要這樣的東西
responseText = "{"success" : true, "message" : \"There has been an error. Message: " + ex.Message + "\"}"
可能重複[Web服務應返回JSON(http://stackoverflow.com/questions/8205081/web -service-should-return-json) – 2014-02-19 23:47:54