我需要在asp mvc 5中上传pic。
但是当我选择图片时,请在The UserPhoto field is required.
显示我。
这是我的代码:
public async Task<ActionResult> Register(RegisterViewModel model, HttpPostedFileBase pic)
{
if (ModelState.IsValid)
{
if (pic != null)
{
pic = Request.Files[0];
var ext = System.IO.Path.GetExtension(pic.FileName);
if (ext == ".jpg" || ext == ".png" || ext == ".jpeg")
{
string filename = model.Name + model.PhoneNumber + ext;
pic.SaveAs(@"~/Image/" + filename);
model.UserPhoto = filename;
}
}
var user = new ApplicationUser { Name = model.Name, Family = model.Family, PhoneNumber = model.PhoneNumber, UserName = model.Email, Email = model.Email};
user.UserPhoto=model.UserPhoto;
var result = await UserManager.CreateAsync(user, model.Password);
if (result.Succeeded)
{
await SignInManager.SignInAsync(user, isPersistent: false, rememberBrowser: false);
return RedirectToAction("Index", "Home");
}
AddErrors(result);
}
// If we got this far, something failed, redisplay form
return View(model);
}
HttpPostedFileBase pic
有值但模型为null。
我该如何解决这个问题?
答案 0 :(得分:1)
嗯,首先,似乎您的意思是model.UserPhoto
为空,因为model
非常明显具有值,大多数属性都是如此,除了UserPhoto
。
那么,问题是你在表单中发布了名为UserPhoto
的内容吗?如果没有,那么它当然是空的。 post后将设置的唯一内容是实际发布的属性。如果它不可为空(即0
为int
),则其他任何内容都将为null或类型的默认值。
但是,你不应该需要它。首先,这似乎是一个“创建”视图,因此UserPhoto
没有任何价值可以开始。如果设置了pic
,则会将UserPhoto
设置为该值,否则,不会上传任何内容,并且UserPhoto
应为空。但是,如果这是一个“编辑”视图,您只需先从数据库中提取用户的副本(其中包括当前的UserPhoto
)。如果发布pic
,您只会再次更改它。
修改强>
错误是因为您根据需要设置了UserPhoto
。只需删除该验证。或者,您可以简单地删除pic
并直接发布到UserPhoto
。