我有一个必填字段,字符串属性{get;在一个类中设置}并希望在剃刀中设置它的值。有类似以下内容吗?
@model.attribute = "whatever'
答案 0 :(得分:91)
首先,资本化很重要。
@model
(小写“m”)是Razor视图中的保留关键字,用于在视图顶部声明模型类型,例如:
@model MyNamespace.Models.MyModel
稍后在文件中,您可以使用@Model.Attribute
(大写“M”)引用所需的属性。
@model
宣布模型。 Model
引用模型的实例化。
其次,您可以为模型分配一个值并在页面中稍后使用它,但是当页面提交到您的控制器操作时它将不会持久化,除非它是表单字段中的值。为了在模型绑定过程中将值返回到模型中,您需要将值分配给表单字段,例如:
选项1
在您的控制器操作中,您需要为页面的第一个视图创建模型,否则当您尝试设置Model.Attribute
时,Model
对象将为空。
控制器:
// This accepts [HttpGet] by default, so it will be used to render the first call to the page
public ActionResult SomeAction()
{
MyModel model = new MyModel();
// optional: if you want to set the property here instead of in your view, you can
// model.Attribute = "whatever";
return View(model);
}
[HttpPost] // This action accepts data posted to the server
public ActionResult SomeAction(MyModel model)
{
// model.Attribute will now be "whatever"
return View(model);
}
查看:
@{Model.Attribute = "whatever";} @* Only do this here if you did NOT do it in the controller *@
@Html.HiddenFor(m => m.Attribute); @* This will make it so that Attribute = "whatever" when the page submits to the controller *@
选项2
或者,由于模型是基于名称的,因此您可以跳过在控制器中创建模型,并将表单字段命名为与模型属性相同的名称。在这种情况下,将名为“Attribute”的隐藏字段设置为“whatever”将确保在页面提交时,值“whatever”将在模型绑定过程中绑定到模型的Attribute
属性。请注意,它不必是隐藏字段,只有name="Attribute"
的任何HTML输入字段。
控制器:
public ActionResult SomeAction()
{
return View();
}
[HttpPost] // This action accepts data posted to the server
public ActionResult SomeAction(MyModel model)
{
// model.Attribute will now be "whatever"
return View(model);
}
查看:
@Html.Hidden("Attribute", "whatever");