我有一个 MVC 网站,后面有 C# 代码。我正在使用一个 ActionResult,它返回 Json。
我试图在 ViewBag 中放一些东西,但它似乎不起作用。
代码如下所示 -
public ActionResult GetStuff(string id)
{
ViewBag.Id = id;
stuff = new StuffFromDatabase(id);
return this.Json(stuff , JsonRequestBehavior.AllowGet);
}
“id”没有出现在 ViewBag.Id 中。
我可以这样把 id 放在 ViewBag 中吗?如果没有关于我应该如何做的任何建议?谢谢!