私は、2 つのフィールドと 1 つの linq2sql エンティティを持つカスタム ビューモデルを持っています。すべてのフィールドには、検証属性が添付されています。すべてのフィールドが無効な場合でも、linq2sql クラスのフィールドのみがエラーとして視覚的に示され、viewmodel のフィールドは正常に表示されます。ただし、すべての無効なフィールドに対してエラー メッセージが表示されます。
私のカスタム ViewModel は次のようになります。
public class BooksViewModel
{
public SelectList BookCategories { get; set; }
public Book Book { get; set; }
[Required(ErrorMessage="Field1 is required")]
[StringLength(10)]
public string Field1 { get; set; }
[Required(ErrorMessage = "Field2 question is required")]
[StringLength(100)]
public string Field2 { get; set; }
}
Book クラスは、検証のためにメタデータ型属性が付加された linq2sql エンティティです。
[MetadataType(typeof(BookMetadata))]
public partial class Book
{
}
public class BookMetadata
{
[Required(ErrorMessage="Choose a category")]
public int CategoryID { get; set; }
[Required(ErrorMessage = "Title is required")]
[StringLength(100)]
public string Title { get; set; }
[Required(ErrorMessage = "Published date is required")]
[DataType(DataType.Date, ErrorMessage="Enter a valid date")]
public DateTime PublishedDate { get; set; }
[Required(ErrorMessage = "Author is required")]
[StringLength(50)]
public string Author { get; set; }
}
リポジトリには、2 つのオーバーロードを持つ AddBook メソッドがあります。1 つはビューモデルを取り、もう 1 つは Book タイプを取ります。
public void AddBook(Book book)
{
var errors = DataAnnotationsValidationRunner.GetErrors(book);
if (errors.Any()) {
throw new RulesException(errors);
}
_db.Books.InsertOnSubmit(book);
_db.SubmitChanges();
}
public void AddBook(BooksViewModel model)
{
var errors = DataAnnotationsValidationRunner.GetErrors(model);
if (errors.Any()) {
throw new RulesException(errors);
}
}
コントローラーの Create アクションは次のようになります。
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Create([Bind(Exclude = "Book.ID")]BooksViewModel booksViewModel)
{
try {
// Validate Book
_repository.AddBook(booksViewModel.Book);
} catch(RulesException ex) {
ex.AddModelStateErrors(ModelState, "Book");
}
try {
// Validate other fields in the view model
_repository.AddBook(booksViewModel);
} catch (RulesException ex) {
ex.AddModelStateErrors(ModelState, "");
}
if (ModelState.IsValid) {
return RedirectToAction("Index");
} else {
booksViewModel.BookCategories = new SelectList(_repository.GetAllCategories().AsEnumerable(), "ID", "CategoryName", booksViewModel.Book.CategoryID);
return (ActionResult)View(booksViewModel);
}
}
クライアント側の検証ルールを生成するために xVal を使用しています。私の作成ビューは次のようになります。
<% using (Html.BeginForm()) {%>
<fieldset>
<legend>Fields</legend>
<p>
<label for="Book.CategoryID">CategoryID:</label>
<%= Html.DropDownList("Book.CategoryID", Model.BookCategories, "Select")%>
<%= Html.ValidationMessage("Book.CategoryID", "*")%>
</p>
<p>
<label for="Book.Title">Title:</label>
<%= Html.TextBox("Book.Title")%>
<%= Html.ValidationMessage("Book.Title", "*")%>
</p>
<p>
<label for="Book.PublishedDate">PublishedDate:</label>
<%= Html.TextBox("Book.PublishedDate")%>
<%= Html.ValidationMessage("Book.PublishedDate", "*")%>
</p>
<p>
<label for="Book.Author">Author:</label>
<%= Html.TextBox("Book.Author")%>
<%= Html.ValidationMessage("Book.Author", "*")%>
</p>
<p>
<label for="Field1">Field1:</label>
<%= Html.TextBox("Field1")%>
<%= Html.ValidationMessage("Field1", "*")%>
</p>
<p>
<label for="Field2">Field2:</label>
<%= Html.TextBox("Field2")%>
<%= Html.ValidationMessage("Field2", "*")%>
</p>
<p>
<input type="submit" value="Create" />
</p>
</fieldset>
<% } %>
<div>
<%=Html.ActionLink("Back to List", "Index") %>
</div>
<%= Html.ClientSideValidation<BooksViewModel>() %>
<%= Html.ClientSideValidation<Book>("Book") %>
クライアント側の検証は正常に機能します..しかし、JavaScriptをオフにしてからポストバックすると、すべてのフィールドに対してフォームエラーメッセージが表示されますが、Field1とField2は無効としてマークされません..フィールドにCSSクラスが追加されておらず、 span タグは、視覚的なエラー表示のために生成されます。
スクリーンショット http://img22.imageshack.us/img22/324/26677634.jpg
しかし、ViewModel フィールドに何かを貼り付けると
public ActionResult Create([Bind(Prefix = "VM", Exclude = "Book.ID")]BooksViewModel booksViewModel)
それに応じてビューを変更すると、すべてが正常に機能します。
<p>
<label for="VM.Book.Title">Title:</label>
<%= Html.TextBox("VM.Book.Title")%>
<%= Html.ValidationMessage("VM.Book.Title", "*")%>
</p>
<p>
<label for="VM.Field1">Field1:</label>
<%= Html.TextBox("VM.Field1")%>
<%= Html.ValidationMessage("VM.Field1", "*")%>
</p>
<%= Html.ClientSideValidation<BooksViewModel>("VM") %>
<%= Html.ClientSideValidation<Book>("Book") %>
ここで何が間違っていますか?
この投稿をとても長くして申し訳ありません..