我看到一篇类似的文章试图用晚餐的例子做同样的事情,但他修复了他的问题,我的看起来有点深。基本上我cxan得到验证工作得很好,但它只适用于Firefox。在IE7中,当页面加载时,我立即得到一个警告框,其中包含以下消息:“错误:元素标题不在表单中”......显然,它在此处,如果需要,我可以发布实际呈现的标记从查看源来显示这个。关于如何解决这个问题的任何想法都将非常感激!
基本上我只是想确保我的NewsPost有一个标题和一个正文。由于我把它包含在ViewModel中,我认为IE不太明白这一点。也许我错了。
我正在使用xVal进行验证。我正在传递一个ViewModel作为我的模型。我的ViewModel看起来像这样:
public class NewsAdminViewData : ViewModel
{
public NewsPost NewsPost { get; set; }
public List<SelectListItem> NewsItem { get; set; }
public List<SelectListItem> NewsGroup { get; set; }
public NewsAdminViewData(List<SelectListItem> newsItem, List<SelectListItem> newsGroup, NewsPost newsPost)
{
this.NewsItem = newsItem;
this.NewsGroup = newsGroup;
this.NewsPost = newsPost;
}
}
这是我的观点:
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<MVCApp.Models.ViewModels.News.NewsAdminViewData>" %>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
<% using (Html.BeginForm())
{%>
<div class="moduleContainer">
<div class="moduleTitle">
Create News Item
</div>
<div class="moduleContent">
<div>
<div>
Title:</div>
<div>
<%= Html.TextBox("Title") %>
</div>
</div>
<div>
<div>
</div>
<div>
<%= Html.TextArea("Body") %>
</div>
</div>
<div>
<div>
News Group:
</div>
<div>
<%= Html.DropDownList("NewsGroup")%>
</div>
</div>
<div>
<div>
News Item:
</div>
<div>
<%= Html.DropDownList("NewsItem") %>
</div>
</div>
</div>
<div class="moduleFooter">
<%= Html.SubmitButton("btnSubmit", "Add News Post", null, "To add this news post click here.", "#ffd40f")%>
</div>
</div>
<% } %>
<%= Html.ClientSideValidation<NewsPost>()%>
最后是我的帖子:
[AcceptVerbs(HttpVerbs.Post)]
public virtual ActionResult Create(/*FormCollection collection*/ NewsPost np)
{
NewsPost entity = this.reposNewsPost.New();
try
{
entity.Title = np.Title;
entity.NewsPostGUID = System.Guid.NewGuid();
entity.DateAdded = DateTime.Now;
entity.DateUpdated = DateTime.Now;
entity.Body = np.Body;
UpdateModel(entity);
this.reposNewsPost.Insert(entity);
this.reposNewsPost.SubmitChanges();
return RedirectToAction("Index");
}
catch (RulesException ex)
{
ex.AddModelStateErrors(ModelState, "NewsPost");
return ModelState.IsValid ? RedirectToAction(MVC.News.Actions.Create)
: (ActionResult)View();
}
}
答案 0 :(得分:1)
我遇到了类似的问题。老实说,看起来你并没有像我一样制造混乱,但也许它会引导你找到解决方案。
带有xVal客户端验证的Mine输入表单被动态加载(jquery ajax调用)到页面中。不幸的是,我忽略了我将返回的html放入已经在父元素之间具有“形式”的元素中。因为它是一个ajax请求,所以页面上存在嵌套的'form'元素,xVal方法“_attachRuleToDOMElement”以这种方式实现:
var parentForm = element.parents("form");
if (parentForm.length != 1)// <-- there can be only one parent form of course
alert("Error: Element " + element.attr("id") + " is not in a form");
我的parentForm.lengts是2!
我看到你肯定没有嵌套表格,但也许在母版页上有什么东西?可能是IE7呈现嵌套表单而Firefox没有。 另外,我会以不同的方式命名输入控件,尽管这不应该是问题的根源:
<%= Html.TextBox("np.Title") %>...<%= Html.TextBox("np.Body") %> etc...
然后我也会设置elementPrefix:
<%= Html.ClientSideValidation<NewsPost>("np")%>