小编典典

Json.Net和ActionResult

json

我自己构建了一个JObject,并希望将其作为ActionResult返回。我不想创建然后序列化数据对象

例如

public ActionResult Test(string id)
{
      var res = new JObject();
      JArray array = new JArray();
      array.Add("Manual text");
      array.Add(new DateTime(2000, 5, 23));
      res["id"] = 1;
      res["result"] = array;
      return Json(res); //???????
}

阅读 211

收藏
2020-07-27

共1个答案

小编典典

您应该只可以在操作方法中执行此操作:

return Content( res.ToString(), "application/json" );
2020-07-27