如果用户是授权用户,我必须制作一个mvc布局视图,该视图将包含用户信息。我从视图中检查,如果用户授权然后运行jquery代码并将ajax发布到方法返回json的方法,我必须使用该json用于用户信息但是如何在没有jquery的情况下执行此操作? 因为当Index()方法运行时,它不知道当前缓冲区是否适用于授权用户。一旦加载了Index(),我就无法告诉控制器通过电子邮件发送我的用户信息。 如果您了解问题,请提出解决方案,如果没有,请提出问题以便更好地提出问题。
我的控制器方法:
[Authorize]
[HttpPost]
public JsonResult GetUser(string email)
{
using (BlexzWebDbEntities db = new BlexzWebDbEntities())
{
var data = db.Users.Where(x => x.Email == email).FirstOrDefault();
return Json(data);
}
}
控制器代码如下:
public class DashboardController : Controller
{
// GET: Index of dashboard
[Authorize]
public ActionResult Index()
{
return View();
}
}
_Layout.cshtml代码如下:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@ViewBag.Title</title>
@Scripts.Render("~/bundles/jquery")
@Scripts.Render("~/bundles/bootstrap")
@{
string Name = "";
var Email = "";
if (User.Identity.IsAuthenticated)
{
Email = System.Web.HttpContext.Current.User.Identity.Name;
<script>
$.post("/Dashboard/GetUser", { email: "@Email" }).done(function (data) {
console.log(data);//here i am receiving data which i dont want to
});
</script>
}
}
</head>
<body>
</body>
</html>
此外,模型示例如下:
public partial class User
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public User()
{
this.Transections = new HashSet<Transection>();
}
public int UserId { get; set; }
public int RoleId { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string Email { get; set; }
public string PasswordHash { get; set; }
public bool IsEmailVerified { get; set; }
public string EmailVerificationToken { get; set; }
public decimal Credit { get; set; }
public string AvatarName { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<Transection> Transections { get; set; }
public virtual Role Role { get; set; }
}
答案 0 :(得分:3)
创建一个服务器方法,该方法返回要在布局中显示的User
详细信息的部分视图,并使用@Html.Action()
方法对其进行渲染。例如
[ChileActionOnly]
public PartialViewResult UserDetails
{
if (User.Identity.IsAuthenticated)
{
User model = ... // your code to get the current user
return PartialView("_UserDetails", model);
}
else
{
return null; // assumes you do not want to display anything
}
}
和您的_UserDetails.cshtml
部分
@model User
<div>@Model.FirstName</div>
.... other properties of User that you want to display
并在布局
中@Html.Action("UserDetails", "yourControllerName");
// or @{ Html.Action("UserDetails", "yourControllerName"); }
请注意,如果您只显示User
的一些属性,则应考虑创建视图模型,而不是将数据模型返回到视图。