我正在日历应用程序上测试推送通知。当我在日历应用程序上创建事件时,我的网站会收到一个带有 JSON 字符串的 HttpPost 请求。我编写了这样的代码,但我无法在我的操作方法中接收 JSON 字符串。
[HttpPost]
public ActionResult Push(String jsonReq)
{
Console.write(jsonReq);
return View();
}
当我以与 JSON 相同的结构创建模型时,我可以接收请求。它似乎与 JSON 结构紧密耦合?我在 ASP.Net MVC 4 中使用。
[HttpPost]
public ActionResult Push(JSONModel jsonModel)
{
return View();
}