我以邮递员的webapi身份简单地http://localhost:2788/Home/Status调用此URL,我发布消息并撤消字符串,现在我想使用推式通知更新此页面http://localhost:2788/Home/Status上的此字符串消息,我如何执行此操作
public ActionResult Status()
{
return View();
}
[HttpPost]
public ActionResult Status(string status)
{
msg m = new msg();
m.message = status;
return Json(status, JsonRequestBehavior.AllowGet);
}
public class msg
{
public string message { get; set; }
}
这是我的查看页面
@model PamPam1.Controllers.HomeController.msg
@{
ViewBag.Title = "Status";
}
<html>
<head>
@*<script src="~/scripts/model.js"></script>*@
</head>
<body>
@if (Model != null)
{
<h2 id="status">@Model.message</h2>
}
</body>
</html>