我想制作多个编辑页面。但我不知道如何在循环中使用TextBoxFor()
, 。TextAreaFor()
ValidationMessageFor()
foreach
@foreach (var note in Model.noteList)
{
using(Html.BeginForm()){
@Html.Hidden("id", note.id);
<div class="userIdArea"><b>@note.userId</b></div>
<div class="noteArea">@note.content</div>
<br />
<div class="editor-label">
@Html.LabelFor(model => model.note.userId)
</div>
<div class="editor-field">
@Html.TextBoxFor(model => model.note.userId, new { @Value = note.userId })
@Html.ValidationMessageFor(model => model.note.userId)
</div>
<div class="editor-field">
@Html.TextAreaFor(note => note.noteList)
@Html.ValidationMessageFor(model => model.note.content)
</div>
<input type="submit" value="Edit" />
}
}
上面的代码无法设置 textarea 值,我认为这不是正确的方法。
编辑 )
我改变了这样的代码,
@foreach (var note in Model.noteList)
{
using(Html.BeginForm()){
@Html.Hidden("note.id", note.id);
<div class="userIdArea"><b>@note.userId</b></div>
<div class="noteArea">@note.content</div>
<br />
<div class="editor-label">
@Html.LabelFor(model => model.note.userId)
</div>
<div class="editor-field">
@Html.TextBoxFor(model => note.userId)
@Html.ValidationMessageFor(model => note.userId)
</div>
<div class="editor-field">
@Html.TextAreaFor(model => note.content)
@Html.ValidationMessageFor(_ => note.content)
</div>
<input type="submit" value="Edit" />
}
}
我仍然有使用 ValidationMessageFor() 的问题。
我只空了一个内容并提交表单然后它发生了这样的事情,
我应该如何将 ValidationMessage 放在正确的位置?
[编辑#2]
是的,我也在同一个视图中创建了表单,
查看代码是这样的,
@model MemoBoard.Models.NoteViewModel
@{
ViewBag.Title = "Index";
Layout = "~/Views/Shared/_Layout.cshtml";
}
<h2>Note</h2>
<br /><br />
@using(Html.BeginForm()){
<div class="editor-label">
@Html.LabelFor(model => model.note.userId)
</div>
<div class="editor-field">
@Html.TextBoxFor(model => model.note.userId)
@Html.ValidationMessageFor(model => model.note.userId)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.note.content)
</div>
<div class="editor-field">
@Html.TextAreaFor(model => model.note.content, new { rows = 4})
@Html.ValidationMessageFor(model => model.note.content)
</div>
<input type="submit" value ="Save" />
} @* //End create form *@
<!-- List Area -->
@foreach (var note in Model.noteList)
{
using(Html.BeginForm()){
@Html.Hidden("note.id", note.id);
@Html.EditorForModel()
<div class="userIdArea"><b>@note.userId</b></div>
<div class="noteArea">@note.content</div>
<br />
<div class="editor-label">
@Html.LabelFor(model => model.note.userId)
</div>
<div class="editor-field">
@Html.EditorFor(model => note.userId, new { id = "A"})
@Html.ValidationMessageFor(model => note.userId)
</div>
<div class="editor-field">
@Html.TextAreaFor(model => note.content)
@Html.ValidationMessageFor(model => note.content)
</div>
<input type="submit" value="Edit" />
}
}
和,
模型,
public class Note
{
[Key]
public int id { get; set; }
[Required(ErrorMessage="Content is required")]
[DisplayName("Note")]
public string content { get; set; }
public DateTime date { get; set; }
[Required(ErrorMessage = "User ID is required")]
[DisplayName("User ID")]
public string userId {get; set;}
public Boolean isPrivate { get; set; }
public virtual ICollection<AttachedFile> AttachedFiles { get; set; }
}
查看模型,
public class NoteViewModel
{
public IEnumerable<Note> noteList { get; set; }
public Note note { get; set; }
}
控制器,
public ActionResult Index()
{
var notes = unitOfWork.NoteRepository.GetNotes();
return View(new NoteViewModel(){noteList=notes.ToList(), note = new Note()});
}
[HttpPost]
public ActionResult Index(Note note)
{
try
{
if (ModelState.IsValid)
{
unitOfWork.NoteRepository.InsertNote(note);
unitOfWork.Save();
return RedirectToAction("Index");
}
}catch(DataException){
ModelState.AddModelError("", "Unable to save changes. Try again please");
}
var notes = unitOfWork.NoteRepository.GetNotes();
return View(new NoteViewModel() { noteList = notes.ToList(), note = new Note() });
}