- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
显然有很多方法可以做到这一点,但我想我会征求一些关于这些方法的优缺点的反馈。
首先,NerdDinner 教程的 Edit Action 的形式为(比如 Form A):
[HttpPost]
public ActionResult Edit(int id, FormCollection collection) {
在我看来,如果你很好地塑造你的 ViewModels 以匹配你的观点,那么方法 Form B:
[HttpPost]
public ActionResult Edit(MyViewModel mvm) {
似乎是一种更好、更简洁的方法。然后我将 VM 属性映射到模型属性并保存。但是,如果此 ViewModel 中嵌入了其他通过构造函数初始化的实体(例如在 nerddinner 教程中),那么如果没有默认构造函数并且您必须使用第一种方法,则此编辑操作将失败。
那么,第一个问题是您是否同意一般情况下 B 型通常更好?有缺点吗?
其次,如果使用 Form B,装饰器类型验证似乎需要在 ViewModel 中进行。在 ViewModel 中嵌入实体并仅在实体级别进行验证是否有优势?
最佳答案
这是一个非常笼统的 SO 问题。
the first question is do you agree that generally Form B is usually better?
我唯一不使用 Form B 的时候是上传文件的时候。否则,我认为任何人都不需要使用 Form A。我认为人们使用 Form A 的原因是缺乏对 ASP.Net 版本 MVC 功能的理解。
Secondly, it seems then if Form B is used, the decorator type validation would need to be in the ViewModel.
有点/这取决于。我给你举个例子:
public IValidateUserName
{
[Required]
string UserName { get; set; }
}
public UserModel
{
string UserName { get; set; }
}
[MetadataType(typeof(IValidateUserName))]
public UserValiationModel : UserModel
{
}
验证装饰器在一个接口(interface)中。我在派生类上使用 MetadataType 来验证派生类型。我个人喜欢这种做法,因为它允许可重复使用的验证,并且 MetadataType/Validation 不是 ASP.NET 核心功能的一部分,因此它可以在 ASP.Net (MVC) 应用程序之外使用。
Are there advantages of embedding entities in ViewModels ..
是的,我尽最大努力从不将基本模型传递给 View 。这是我不做的事的一个例子:
public class person { public Color FavoriteColor { get; set; } }
ActionResult Details()
{
Person model = new Person();
return this.View(model);
}
当您想将更多数据传递给 View 时会发生什么(对于局部数据或布局数据)?大多数时候该信息与 Person 无关,因此将其添加到 Person 模型没有任何意义。相反,我的模型通常看起来像:
public class DetailsPersonViewModel()
{
public Person Person { get; set; }
}
public ActionResult Details()
{
DetailsPersonViewModel model = new DetailsPersonViewModel();
model.Person = new Person();
return this.View(model);
}
现在我可以向 DetailsPersonViewModel
添加所需的数据,该 View 需要超出 Person 所知的范围。例如,假设这将显示一个包含所有颜色的 for,供 Person 选择最喜欢的颜色。所有可能的颜色都不是人的一部分,也不应该是人模型的一部分,所以我将它们添加到 DetailPersonViewModel。
public class DetailsPersonViewModel()
{
public Person Person { get; set; }
public IEnumerable<Color> Colors { get; set; }
}
.. and keeping the validation at the entity level only?
System.ComponentModel.DataAnnotations
不是为了验证属性的特性而设计的,所以做类似的事情:
public class DetailsPersonViewModel()
{
[Required(property="FavoriteColor")]
public Person Person { get; set; }
}
不存在也没有意义。为什么 ViewModel 不应包含对需要验证的实体的验证。
this edit action fails if there is no default constructor and you'd have to use the first approach.
正确,但为什么 ViewModel 或 ViewModel 中的实体没有无参数构造函数?听起来像是一个糟糕的设计,即使对此有一些要求,也可以通过 ModelBinding 轻松解决。这是一个例子:
// Lets say that this person class requires
// a Guid for a constructor for some reason
public class Person
{
public Person(Guid id){ }
public FirstName { get; set; }
}
public class PersonEditViewModel
{
public Person Person { get; set; }
}
public ActionResult Edit()
{
PersonEditViewModel model = new PersonEditViewModel();
model.Person = new Person(guidFromSomeWhere);
return this.View(PersonEditViewModel);
}
//View
@Html.EditFor(m => m.Person.FirstName)
//Generated Html
<input type="Text" name="Person.FirstName" />
现在我们有一个表单,用户可以输入新的名字。我们如何取回此构造函数中的值?很简单,ModelBinder 并不关心它绑定(bind)到什么模型,它只是将 HTTP 值绑定(bind)到匹配的类属性。
[MetadataType(typeof(IPersonValidation))]
public class UpdatePerson
{
public FirstName { get; set; }
}
public class PersonUpdateViewModel
{
public UpdatePerson Person { get; set; }
}
[HttpPost]
public ActionResult Edit(PersonUpdateViewModel model)
{
// the model contains a .Person with a .FirstName of the input Text box
// the ModelBinder is simply populating the parameter with the values
// pass via Query, Forms, etc
// Validate Model
// AutoMap it or or whatever
// return a view
}
关于asp.net - 没有默认构造函数的 ActionResult 参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13976716/
简而言之:我想从可变参数模板参数中提取各种选项,但不仅通过标签而且通过那些参数的索引,这些参数是未知的 标签。我喜欢 boost 中的方法(例如 heap 或 lockfree 策略),但想让它与 S
我可以对单元格中的 excel IF 语句提供一些帮助吗? 它在做什么? 对“BaselineAmount”进行了哪些评估? =IF(BaselineAmount, (Variance/Baselin
我正在使用以下方法: public async Task Save(Foo foo,out int param) { ....... MySqlParameter prmparamID
我正在使用 CodeGear RAD Studio IDE。 为了使用命令行参数测试我的应用程序,我多次使用了“运行 -> 参数”菜单中的“参数”字段。 但是每次我给它提供一个新值时,它都无法从“下拉
我已经为信用卡类编写了一些代码,粘贴在下面。我有一个接受上述变量的构造函数,并且正在研究一些方法将这些变量格式化为字符串,以便最终输出将类似于 号码:1234 5678 9012 3456 截止日期:
MySql IN 参数 - 在存储过程中使用时,VarChar IN 参数 val 是否需要单引号? 我已经像平常一样创建了经典 ASP 代码,但我没有更新该列。 我需要引用 VarChar 参数吗?
给出了下面的开始,但似乎不知道如何完成它。本质上,如果我调用 myTest([one, Two, Three], 2); 它应该返回元素 third。必须使用for循环来找到我的解决方案。 funct
将 1113355579999 作为参数传递时,该值在函数内部变为 959050335。 调用(main.c): printf("%d\n", FindCommonDigit(111335557999
这个问题在这里已经有了答案: Is Java "pass-by-reference" or "pass-by-value"? (92 个回答) 关闭9年前。 public class StackOve
我真的很困惑,当像 1 == scanf("%lg", &entry) 交换为 scanf("%lg", &entry) == 1 没有区别。我的实验书上说的是前者,而我觉得后者是可以理解的。 1 =
我正在尝试使用调用 SetupDiGetDeviceRegistryProperty 的函数使用德尔福 7。该调用来自示例函数 SetupEnumAvailableComPorts .它看起来像这样:
我需要在现有项目上实现一些事件的显示。我无法更改数据库结构。 在我的 Controller 中,我(从 ajax 请求)传递了一个时间戳,并且我需要显示之前的 8 个事件。因此,如果时间戳是(转换后)
rails 新手。按照多态关联的教程,我遇到了这个以在create 和destroy 中设置@client。 @client = Client.find(params[:client_id] || p
通过将 VM 参数设置为 -Xmx1024m,我能够通过 Eclipse 运行 Java 程序-Xms256M。现在我想通过 Windows 中的 .bat 文件运行相同的 Java 程序 (jar)
我有一个 Delphi DLL,它在被 Delphi 应用程序调用时工作并导出声明为的方法: Procedure ProduceOutput(request,inputs:widestring; va
浏览完文档和示例后,我还没有弄清楚 schema.yaml 文件中的参数到底用在哪里。 在此处使用 AWS 代码示例:https://github.com/aws-samples/aws-proton
程序参数: procedure get_user_profile ( i_attuid in ras_user.attuid%type, i_data_group in data_g
我有一个字符串作为参数传递给我的存储过程。 dim AgentString as String = " 'test1', 'test2', 'test3' " 我想在 IN 中使用该参数声明。 AND
这个问题已经有答案了: When should I use "this" in a class? (17 个回答) 已关闭 6 年前。 我运行了一些java代码,我看到了一些我不太明白的东西。为什么下
我输入 scroll(0,10,200,10);但是当它运行时,它会传递字符串“xxpos”或“yypos”,我确实在没有撇号的情况下尝试过,但它就是行不通。 scroll = function(xp
我是一名优秀的程序员,十分优秀!