尝试以未授权用户身份提交表单时出现问题

时间:2019-03-08 21:34:16

标签: c# asp.net-mvc asp.net-identity

对不起,标题,但我不知道该如何用一句话来解释。 我对表单有看法:

@using (Html.BeginForm("AddComment", "Restaurants"))
{
    @Html.TextBoxFor(c => c.NewComment.Body)
    @Html.HiddenFor(m => m.Restaurant.Id)
    <button type="submit">Add comment</button>
}

以及Restaurants控制器中的AddComment Action:

public ActionResult AddComment(RestaurantViewModel model, Comment newComment)
{
    var userId = User.Identity.GetUserId();
    var user = _context.Users.FirstOrDefault(u => u.Id == userId);

    newComment.RestaurantId = model.Restaurant.Id;
    newComment.AuthorId = Guid.Parse(userId);
    newComment.AuthorName = user.UserName;
    newComment.DateTime = DateTime.Now;

    _context.Comments.Add(newComment);
    _context.SaveChanges();

    return RedirectToAction("Details", "Restaurants", new { id = model.Restaurant.Id});
}

我添加了授权过滤器:

filters.Add(new AuthorizeAttribute());

当我尝试以未登录用户的身份提交表单时,它会将我重定向到登录页面。如果我在该页面上登录,它将调用AddComment Action,但是它将参数Model.RestaurantNewComment.Body传递为空。如何修复它,因此在我登录时,它会将我重定向到填充了TextBox的上一页,或者仅调用AddComment但传递正确的参数值。

3 个答案:

答案 0 :(得分:1)

没有内置方法可以做到这一点。原因是,这不是“做事的方式”。如果您的表单具有受保护的POST操作,则还应使相应的GET页面也仅通过身份验证。

答案 1 :(得分:0)

尝试删除此行:

filters.Add(new AuthorizeAttribute());

并将符号[Authorize]添加到您的方法中,例如:

[Authorize]
public ActionResult AddComment(RestaurantViewModel model, Comment newComment)
{
    var userId = User.Identity.GetUserId();
    var user = _context.Users.FirstOrDefault(u => u.Id == userId);

    newComment.RestaurantId = model.Restaurant.Id;
    newComment.AuthorId = Guid.Parse(userId);
    newComment.AuthorName = user.UserName;
    newComment.DateTime = DateTime.Now;

    _context.Comments.Add(newComment);
    _context.SaveChanges();

    return RedirectToAction("Details", "Restaurants", new { id = model.Restaurant.Id});
}

答案 2 :(得分:0)

我不建议在最简单的情况下进行此操作。您可以将表单更改为使用get而不是post

@using (Html.BeginForm("AddComment", "Restaurants", FormMethod.Get))
{
    @Html.TextBoxFor(c => c.NewComment.Body)
    @Html.HiddenFor(m => m.Restaurant.Id)
    <button type="submit">Add comment</button>
}

注意事项:

  • 仅当您使用内置auth或您的实现转发查询字符串值时,此方法才起作用。
  • 第二,这些值将出现在URL中,因此可以轻松地对其进行篡改。
  • 最后但并非最不重要的一点是,如果AddComment具有HttpPost属性,则必须将其删除。