我目前有一个包含两个文本框的视图,用户可以在其中输入一些数据。一个文本框仅允许值1-10,另一个文本框为字符串。我不确定我做了什么代码更改,但接受字符串的第二个文本框不再“有效”。例如,当我输入一个字符串并尝试提交表单时,我收到一条验证消息,指出“值”(字符串)“无效。以下是我的解决方案中的一些代码片段。
实体:
public class MovieReview
{
public int Id { get; set; }
[Range(1, 10)]
[Required]
public int Rating { get; set; }
public string Review { get; set; }
public int MovieId { get; set; }
}
控制器:
public class ReviewsController : Controller
{
private MovieLoversDb _db = new MovieLoversDb();
public ActionResult Index([Bind(Prefix = "id")]int movieId)
{
var movie = _db.Movies.Find(movieId);
if (movie != null)
{
return View(movie);
}
return HttpNotFound();
}
[HttpGet]
public ActionResult Create(int movieId)
{
return View();
}
[HttpPost]
public ActionResult Create(MovieReview review)
{
if (ModelState.IsValid)
{
_db.MovieReviews.Add(review);
_db.SaveChanges();
return RedirectToAction("Index", new { id = review.MovieId });
}
return View(review);
}
部分视图:
@model MovieLovers.Models.MovieReview
@{
ViewBag.Title = "Review a Movie";
}
<h2>Review a Movie</h2>
@using (Html.BeginForm()) {
@Html.AntiForgeryToken()
@Html.ValidationSummary(true)
<fieldset>
<legend>New Review</legend>
<div class="editor-label">
@Html.LabelFor(model => model.Rating)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.Rating)
@Html.ValidationMessageFor(model => model.Rating)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.Review)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.Review)
@Html.ValidationMessageFor(model => model.Review)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.ReviewerName)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.ReviewerName)
@Html.ValidationMessageFor(model => model.ReviewerName)
</div>
<p>
<input type="submit" value="Create" />
</p>
</fieldset>
}
现在的问题是,我做错了什么?为什么会产生验证错误?
答案 0 :(得分:5)
我根据Jasen在原帖中的评论中提出了建议。似乎“评论”可能已被使用了两次,虽然我找不到哪里。我将属性名称更改为“body”,现在它可以正常工作。
感谢您的帮助!
答案 1 :(得分:2)
问题是该字段的名称是评论:
@ Html.EditorFor(model =&gt; model.Review)
作为控件中参数的名称:
公共ActionResult创建(MovieReview评论)
更改参数名称也应该有用
答案 2 :(得分:1)
请尝试使用
public class MovieReview
{
public int Id { get; set; }
[Range(1, 10)]
[Required]
public int Rating { get; set; }
public string? Review { get; set; }
public int MovieId { get; set; }
}
答案 3 :(得分:1)
它不起作用,因为您的域类具有名为Review(public string Review { get; set; }
)的属性,并且接收更新的域类的方法也具有名为review的参数(public ActionResult Create(MovieReview review)
)。
将public ActionResult Create(MovieReview review)
更改为public ActionResult Create(MovieReview movieReview)
。
答案 4 :(得分:0)
我认为在下面的模型中.Review和Model.Rating无法直接访问,因为你的模式是IEnumerable
<th>
@Html.DisplayNameFor(model => model.Rating)
</th>
<th>
@Html.DisplayNameFor(model => model.Review)
</th>
答案 5 :(得分:0)
你的var名称不应该与类名相同试试这个:
len(m)
答案 6 :(得分:-1)
删除@Html.ValidationSummary(true)
或
删除所有ValidationMessageFor
并更改为(删除true)@Html.ValidationSummary()
编辑:
您想删除所有ValidationMessageFor
并将ValidationSummary(true)
更改为ValidationSummary()