Steve Sanderson 的 BeginCollectionItem 在所有情况下都不起作用......潜在的解决方案?

发布于 2024-12-11 10:33:28 字数 359 浏览 1 评论 0原文

我正在与 Steve Sanderson 的 BeginCollectionItem 实用程序,用于呈现要在 MVC3 中编辑的对象列表,当您从迭代器呈现整个集合时,它非常有用。当我尝试向集合中添加一个新项目并返回表示该对象的 html 时,我的问题就出现了。由于某种原因,我的数据注释没有在代码中呈现在 html 中。

有没有可用的修复程序,或者有什么不同的东西,无需手动编写验证,我可以做来解决这个问题?

谢谢。

I'm working with Steve Sanderson's BeginCollectionItem utility to render a list of objects to be edited in MVC3, and it works great when you're rendering an entire collection from an iterator. My problem is coming when I'm trying to just add one new item to the collection, and return the html that represents that object. For some reason, my data annotations aren't being rendered in the html coming down from code.

Is there any fix available to this, or is there anything different, sans having to write the validation by-hand, that I can do to solve this issue?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

陌上芳菲 2024-12-18 10:33:28

需要考虑的事项:

  1. 除非 FormContext 存在于您用来创建此附加对象的任何方法中,否则不会呈现数据注释。如果您使用分部视图,请在顶部添加以下内容:

-

   if (this.ViewContext.FormContext == null) 
   {
       this.ViewContext.FormContext = new FormContext(); 
   } 
  1. 如果您通过 AJAX 向页面动态添加项目,则在添加新项目后,必须清除 DOM 中的验证数据,并且重新解析所有验证元素,如下所示:

-

   $("form").removeData("validator");
   $("form").removeData("unobtrusiveValidation");
   $.validator.unobtrusive.parse("form");

Things to consider:

  1. Data annotations will not be rendered unless a FormContext exists in whatever method you are using to create this additional object. If you are using a partial view, add the following to it at the top:

-

   if (this.ViewContext.FormContext == null) 
   {
       this.ViewContext.FormContext = new FormContext(); 
   } 
  1. If you are dynamically adding an item to the page via AJAX, then after you add your new item, you must clear the validation data in the DOM, and re-parse all of your validation elements, like so:

-

   $("form").removeData("validator");
   $("form").removeData("unobtrusiveValidation");
   $.validator.unobtrusive.parse("form");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文