我还需要返回包含成功值(true或false)的JSON数据,它也需要有结果消息。
所以我使用Dictionary来包含数据,但当它返回Jason数据时,它包含“”(Quot)。
JsonResult = new Dictionary<string, string>();
JsonResult.Add("Success", "False");
JsonResult.Add("Message", "Error Message");
return Json(JsonResult);
它返回,
{"Success":"False","Message":"Error Message"}
但我需要,
{Success:False,Message:"Error Message"} //with out "" (Quot)
有人知道吗?
谢谢!
答案 0 :(得分:32)
{"Success":"False","Message":"Error Message"}
是有效的JSON 。你可以查看它here。在jsonlint.com
您甚至不需要使用Dictionary来返回该JSON。你可以简单地使用这样的匿名变量:
public ActionResult YourActionMethodName()
{
var result=new { Success="False", Message="Error Message"};
return Json(result, JsonRequestBehavior.AllowGet);
}
要从您的客户端访问此数据,您可以执行此操作。
$(function(){
$.getJSON('YourController/YourActionMethodName', function(data) {
alert(data.Success);
alert(data.Message);
});
});