我有一个像这样的控制器动作:
public ActionResult Test(string par)
{
Model myMod = new Model();
myMod.Attribute = par;
return View(myMod);
}
在测试视图中,我想检索并打印该属性...
像这样:
@model Project.Models.Model
@Html.DisplayFor(model => model.Attribute)
但通过这种方式,我无法从动作中检索数据。
答案 0 :(得分:2)
在您的模型中,该属性被称为Attribute
,但在视图中,您引用的是Attrubute
:
@Html.DisplayFor(model => model.Attribute)