[HttpGet]
public ActionResult getCoversationList(int CustomerId)
{
// 获取用户相关的聊天数据,包括个人,群,系统(可以单独获取)
return Json(new { result = true, info = "", msg = "操作成功" }, JsonRequestBehavior.AllowGet); // 允许get
}
设置成JsonRequestBehavior.AllowGet。可以断点调试,可以浏览器看到json数据。
不需要通过PostMan返回数据了。
调试好之后,将接口重新设置为HttpPost即可。
本文转自TBHacker博客园博客,原文链接:http://www.cnblogs.com/jiqing9006/p/7059279.html,如需转载请自行联系原作者