我正在制作备忘录网络应用程序。
主页包含“创建和列出和修改”功能。
但我不知道如何将模型(用于创建)和列表(用于列表)从控制器传递给视图(剃刀)。
这是我的笔记模型,
[Table("note")]
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; }
}
我试过了,
1)
public ActionResult Index()
{
var notes = unitOfWork.NoteRepository.GetNotes();
return View(notes);
}
那么,鉴于,
@model Enumerable<MemoBoard.Models.Note>
//I can not use this, because the model is Enumerable type
@Html.LabelFor(model => model.userId)
所以,我做了viewModel
2)
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()});
}
在视图中,
@model MemoBoard.Models.NoteViewModel
@Html.LabelFor(model => model.note.userId)
它看起来不错,但在源视图中,它正在显示
<input data-val="true" data-val-required="User ID is required" id="note_userId" name="note.userId" type="text" value="" />
名称是note.userId而不是userId。
列出这种情况,我该怎么做才能工作?
请给我建议。
谢谢
[编辑](首先,感谢所有建议)
那么,我怎样才能改变这个控制器
[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");
}
return RedirectToAction("Index");
}
如果我将参数类型更改为 NoteViewModel,那么我应该如何进行有效检查?
[HttpPost]
public ActionResult Index(NoteViewModel data)
{
try
{
if (ModelState.IsValid) <===