29

请忍受我的菜鸟,我对 MVC 模式非常陌生。

我正在尝试做的事情

我正在为我的网站上的注册用户构建个人资料信息页面。此页面将列出有关用户的数据,例如出生日期、电话号码、订阅状态等。你明白了。我还想有一个表格让用户在同一页面上更改他们的密码、电子邮件地址、个人信息。

我的问题

用户的数据通过传递的模型变量来自我的控制器:

public ActionResult Profil()
        {
            var model = db.Users.First(e => e.UserName == WebSecurity.CurrentUserName);
            return View(model);
        }

在我看来,输出如下所示:

<label>Phone number: </label>
            @if (Model.PhoneNumber != null)
                    {
                        @Model.PhoneNumber
                    }
                    else
                    {
                        <span class="red">You haven't set up your phone number yet. </span>
                    }

用户可以更改其信息的表单将使用另一个模型 ProfileModel。所以基本上我需要在我的视图中使用两个模型,一个用于输出信息,一个用于发布数据。我认为使用局部视图可以实现此目的,但出现此错误:

传入字典的模型项的类型为“Applicense.Models.User”,但此字典需要“Applicense.Models.ProfileModel”类型的模型项。

这是我对局部视图的调用如下所示:

 @using (Html.BeginForm())
    {
        @Html.AntiForgeryToken()
        @Html.ValidationSummary()

        @Html.Partial("_ModifyProfileInfo")
    }

这是部分视图:

@model Applicense.Models.ProfileModel
<ul>
    <li>
        @Html.LabelFor(m => m.Email)
        @Html.EditorFor(m => m.Email)
    </li>
    <li>
        @Html.LabelFor(m => m.ConfirmEmail)
        @Html.EditorFor(m => m.ConfirmEmail)
    </li>
    <input type="submit" value="Update e-mail" />
</ul>

最后是我的 ProfileModel:

public class ProfileModel
    {
        [Required]
        [DataType(DataType.EmailAddress)]
        [Display(Name = "New e-mail address")]
        public string Email { get; set; }

        [DataType(DataType.EmailAddress)]
        [Display(Name = "Confirm new e-mail address")]
        [Compare("Email", ErrorMessage = "The e-mail and it's confirmation field do not match.")]
        public string ConfirmEmail { get; set; }
    }

我错过了什么吗?这样做的正确方法是什么?

编辑: 我重新编写了反映 Nikola Mitev 答案的代码,但现在我遇到了另一个问题。这是我得到的错误:

你调用的对象是空的。(@Model.UserObject.LastName)

这仅在我发布更改的电子邮件地址值时发生。这是我的 ViewModel (ProfileModel.cs):

public class ProfileModel
    {
        public User UserObject { get; set; }

        [Required]
        [DataType(DataType.EmailAddress)]
        [Display(Name = "Új e-mail cím")]
        public string Email { get; set; }

        [DataType(DataType.EmailAddress)]
        [Display(Name = "Új e-mail cím megerősítése")]
        [Compare("Email", ErrorMessage = "A két e-mail cím nem egyezik.")]
        public string ConfirmEmail { get; set; }

        [DataType(DataType.EmailAddress)]
        [Display(Name= "E-mail cím")]
        public string ReferEmail { get; set; }
    }

控制器:

public ActionResult Profil()
        {
            var User = db.Users.First(e => e.UserName == WebSecurity.CurrentUserName);

            var ProfileViewModel = new ProfileModel
            {
                UserObject = User
            };

            return View(ProfileViewModel);
        }

最后这是我的user.cs模型课:

[Table("UserProfile")]
    public class User
    {
        [Key]
        [DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
        public int UserId { get; set; }
        [Column("UserName")]
        public string UserName { get; set; }
        [Column("Email")]
        [Required]
        public string Email { get; set; }
        [Column("FirstName")]
        public string FirstName { get; set; }
        [Column("LastName")]
        public string LastName { get; set; }
        [Column("PhoneNumber")]
        public string PhoneNumber { get; set; }
... You get the idea of the rest...

我认为它正在发生,因为模型试图将每required列中的数据放入数据库中。

Edit2: 我的 Profil 操作的 httppost 方法:

[HttpPost]
        [Authorize]
        [ValidateAntiForgeryToken]
        public ActionResult Profil(ProfileModel model)
        {
            if (ModelState.IsValid)
            {
//insert into database
                return Content("everything's good");
            }
            else
            {
//outputs form errors
                return View(model);
            }
        }
4

4 回答 4

38

处理这种情况的最佳方法是使用 viewModel 并将其传递给 Profile 控制器,viewModel 是要传递给视图的多个对象的包装类。

public class ProfileUserViewModel
{
   public ProfileModel ProfileModelObject {get; set;}
   public UserModel  UserModelObject {get; set;}
}   

您的控制器应如下所示:

public ActionResult Profil()
{            
    var profileModel = db.Users.First(e => e.UserName == WebSecurity.CurrentUserName);
    var userModel = //fetch from db.

    var pmViewModel = new ProfileUserViewModel  
                          {
                              ProfileModelObject = profileModel,
                              UserModelObject = userModel
                          };

   return View(pmViewModel);
}

最后你的观点:

@model Applicense.Models.ProfileUserViewModel

<label>Phone number: </label>

@if (Model.ProfileModelObject.PhoneNumber != null)
{
   @Model.PhoneNumber
}
else
{
    <span class="red">You haven't set up your phone number yet. </span>
}
于 2013-06-18T15:55:39.970 回答
13

有一个重载@Html.Partial允许您ViewData按照控制器中的定义发送 - 这是我通常用于部分视图的方法。在您的控制器中定义ViewData["mypartialdata"]ViewDataDictionary. 那么在你看来

@Html.Partial("_ModifyProfileInfo",ViewData["mypartialdata"])
于 2013-06-18T15:45:30.537 回答
1

在您的[HttpPost]profile 函数中,如果modelstate.isvalid为 false,则返回您的编辑视图,但您需要pmViewModel再次定义您的,否则您的局部视图将没有要显示的对象。尝试使用以下内容,让我们知道会发生什么

[HttpPost]
[Authorize]
[ValidateAntiForgeryToken]
public ActionResult Profil(ProfileModel model)
{
    if (ModelState.IsValid)
    {
        //insert into database
        return Content("everything's good");
    }
    else
    {
        //outputs form errors
        var pmViewModel = new ProfileUserViewModel  
        {
            ProfileModelObject = profileModel,
            UserModelObject = userModel
        };

        return View(model);
    }
}
于 2013-06-19T11:42:58.953 回答
0

虽然我知道很久以前就有人问过这个问题,但是有些人可能仍然面临类似的问题。我用来在页面上传递或拥有多个视图模型的一种简单解决方案是使用 ViewBag 来保存第二个对象并在视图中引用它。请参见下面的示例。

在您的控制器中执行以下操作:

Obj2 personalDets = new Obj2();
DbContext ctx = new DbContext();
var details = ctx.GetPersonalInformation;

foreach(var item in details) {
    personalDets.Password = item.Password;
    personalDets .EmailAddress = item.EmailAddress; 
}

ViewBag.PersonalInformation = personalDets;

然后在您看来,这些属性对您来说很容易获得

于 2016-07-18T12:54:23.857 回答