- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 MVC3 应用程序中,我有一个具有奇怪行为的实体:创建操作工作正常,但编辑操作失败:提交时我得到的模型的所有字段都是空的。
我搜索了有关此错误的建议,似乎 ViewModel 可能是原因,但我看不出我的有任何问题。正如我之前所说,创作效果很好!
请帮忙,谢谢!
型号:
public partial class tblEmployeur
{
[Required(ErrorMessageResourceType = typeof(EmployeurResources), ErrorMessageResourceName = "RequiredUserIDMessage")]
[Display(ResourceType = typeof(EmployeurResources), Name = "UserIDDisplay")]
public System.Guid userID { get; set; }
[Required(ErrorMessageResourceType = typeof(EmployeurResources), ErrorMessageResourceName = "RequiredNomMessage")]
[Display(ResourceType = typeof(EmployeurResources), Name = "NomDisplay")]
public string nom { get; set; }
[Required(ErrorMessageResourceType = typeof(EmployeurResources), ErrorMessageResourceName = "RequiredTypeSocMessage")]
[Display(ResourceType = typeof(EmployeurResources), Name = "TypeSocDisplay")]
public string type_soc { get; set; }
[Required(ErrorMessageResourceType = typeof(EmployeurResources), ErrorMessageResourceName = "RequiredCodeRCMessage")]
[Display(ResourceType = typeof(EmployeurResources), Name = "CodeRCDisplay")]
public string codeRC { get; set; }
[Display(ResourceType = typeof(EmployeurResources), Name = "AdresseDisplay")]
public string adresse { get; set; }
[Required(ErrorMessageResourceType = typeof(EmployeurResources), ErrorMessageResourceName = "RequiredVilleMessage")]
[Display(ResourceType = typeof(EmployeurResources), Name = "VilleDisplay")]
public string ville { get; set; }
[Required(ErrorMessageResourceType = typeof(EmployeurResources), ErrorMessageResourceName = "RequiredWilayaMessage")]
[Display(ResourceType = typeof(EmployeurResources), Name = "WilayaDisplay")]
public int wilaya { get; set; }
[Display(ResourceType = typeof(EmployeurResources), Name = "Tel1Display")]
public string tel1 { get; set; }
[Display(ResourceType = typeof(EmployeurResources), Name = "Tel2Display")]
public string tel2 { get; set; }
[Display(ResourceType = typeof(EmployeurResources), Name = "FaxDisplay")]
public string fax { get; set; }
[Required(ErrorMessageResourceType = typeof(EmployeurResources), ErrorMessageResourceName = "RequiredEmailMessage")]
[Display(ResourceType = typeof(EmployeurResources), Name = "EmailDisplay")]
public string email { get; set; }
[Display(ResourceType = typeof(EmployeurResources), Name = "SiteWebDisplay")]
public string site_web { get; set; }
[Required(ErrorMessageResourceType = typeof(EmployeurResources), ErrorMessageResourceName = "RequiredBanqueMessage")]
[Display(ResourceType = typeof(EmployeurResources), Name = "BanqueDisplay")]
public string banque { get; set; }
[Required(ErrorMessageResourceType = typeof(EmployeurResources), ErrorMessageResourceName = "RequiredAgenceMessage")]
[Display(ResourceType = typeof(EmployeurResources), Name = "AgenceDisplay")]
public string agence { get; set; }
[Required(ErrorMessageResourceType = typeof(EmployeurResources), ErrorMessageResourceName = "RequiredCompteMessage")]
[Display(ResourceType = typeof(EmployeurResources), Name = "CompteDisplay")]
public string nr_compte { get; set; }
[Required(ErrorMessageResourceType = typeof(EmployeurResources), ErrorMessageResourceName = "RequiredDomaineMessage")]
[Display(ResourceType = typeof(EmployeurResources), Name = "DomaineDisplay")]
public int domaine { get; set; }
[Display(ResourceType = typeof(EmployeurResources), Name = "NotesDisplay")]
public string notes { get; set; }
[Display(ResourceType = typeof(EmployeurResources), Name = "LogoPetitDisplay")]
public byte[] logo_petit { get; set; }
[Display(ResourceType = typeof(EmployeurResources), Name = "LogoGrandDisplay")]
public byte[] logo_grand { get; set; }
}
View 模型:
public class EmployeurFormViewModel
{
// Properties
public tblEmployeur employeur { get; private set; }
public SelectList Domaines { get; private set; }
public SelectList Wilayas { get; private set; }
public SelectList TypesSocietes { get; private set; }
public string ActionToPerform { get; private set; }
// Constructor
public EmployeurFormViewModel(tblEmployeur unEmployeur, Guid employeurID, SelectList domList, SelectList Wils, SelectList typesSocsList)
{
employeur = unEmployeur;
Domaines = domList;
Wilayas = Wils;
TypesSocietes = typesSocsList;
if (String.IsNullOrEmpty(unEmployeur.userID.ToString())||(string.Compare(unEmployeur.userID.ToString(), "00000000-0000-0000-0000-000000000000")==0))
{
unEmployeur.userID = employeurID;
ActionToPerform = "Create";
}
else
{
ActionToPerform = "Edit";
}
}
}
Controller :
[Authorize(Roles = "Employeur")]
public ActionResult Create(Guid id)
{
tblEmployeur employeur = new tblEmployeur();
SelectList domainesList = new SelectList(db.tblDomaines, "domaine_ID", "domaine");
SelectList wilsList = new SelectList(db.tblWilayas, "wilaya_ID", "wilaya");
SelectList typesSocList = new SelectList(typesSocRepository.GetAll());
return View("Create", new EmployeurFormViewModel(employeur, id, domainesList, wilsList, typesSocList));
}
//
// POST: /Employeur/Create
[HttpPost, Authorize(Roles = "Employeur")]
public ActionResult Create(tblEmployeur employeur, Guid id)
{
SelectList domainesList = new SelectList(db.tblDomaines, "domaine_ID", "domaine", employeur.domaine);
SelectList wilsList = new SelectList(db.tblWilayas, "wilaya_ID", "wilaya");
SelectList typesSocList = new SelectList(typesSocRepository.GetAll(), employeur.type_soc);
IEnumerable<System.Data.Entity.Validation.DbEntityValidationResult> validationResultsColl = db.GetValidationErrors();
foreach (var validationResults in validationResultsColl)
{
foreach (var error in validationResults.ValidationErrors)
{
ModelState.AddModelError(error.PropertyName, new Exception(error.ErrorMessage));
}
}
if (ModelState.IsValid)
{
try
{
repository.Add(employeur);
repository.Save();
return RedirectToAction("Details");
}
catch (System.Data.Entity.Validation.DbEntityValidationException dbEx)
{
foreach (var validationErrors in dbEx.EntityValidationErrors)
{
foreach (var validationError in validationErrors.ValidationErrors)
{
ModelState.AddModelError(validationError.PropertyName, new Exception(validationError.ErrorMessage));
}
}
}
catch (Exception ex)
{
ModelState.AddOtherError(ex);
}
}
return View("Create", new EmployeurFormViewModel(employeur, id, domainesList, wilsList, typesSocList));
}
//
// GET: /Employeur/Edit/5
public ActionResult Edit(Guid id)
{
tblEmployeur employeurCrt = db.tblEmployeurs.Find(id);
SelectList domainesList = new SelectList(db.tblDomaines, "domaine_ID", "domaine", employeurCrt.domaine);
SelectList wilsList = new SelectList(db.tblWilayas, "wilaya_ID", "wilaya", employeurCrt.wilaya);
SelectList typesSocList = new SelectList(typesSocRepository.GetAll(), employeurCrt.type_soc);
return View("Edit", new EmployeurFormViewModel(employeurCrt, id, domainesList, wilsList, typesSocList));
}
//
// POST: /Employeur/Edit/5
[HttpPost]
public ActionResult Edit(tblEmployeur employeurCrt)
{
SelectList domainesList = new SelectList(db.tblDomaines, "domaine_ID", "domaine", employeurCrt.domaine);
SelectList wilsList = new SelectList(db.tblWilayas, "wilaya_ID", "wilaya", employeurCrt.wilaya);
SelectList typesSocList = new SelectList(typesSocRepository.GetAll(), employeurCrt.type_soc);
IEnumerable<System.Data.Entity.Validation.DbEntityValidationResult> validationResultsColl = db.GetValidationErrors();
foreach (var validationResults in validationResultsColl)
{
foreach (var error in validationResults.ValidationErrors)
{
ModelState.AddModelError(error.PropertyName, new Exception(error.ErrorMessage));
}
}
if (ModelState.IsValid)
{
try
{
repository.Update(employeurCrt);
repository.Save();
return RedirectToAction("Details");
}
catch (System.Data.Entity.Validation.DbEntityValidationException dbEx)
{
foreach (var validationErrors in dbEx.EntityValidationErrors)
{
foreach (var validationError in validationErrors.ValidationErrors)
{
ModelState.AddModelError(validationError.PropertyName, new Exception(validationError.ErrorMessage));
}
}
}
catch (Exception ex)
{
ModelState.AddOtherError(ex);
}
}
return View("Edit", new EmployeurFormViewModel(employeurCrt, employeurCrt.userID, domainesList, wilsList, typesSocList));
}
编辑 View :
@model MyApp.ViewModels.EmployeurFormViewModel
@{
ViewBag.Title = "Update employeur";
}
<script src="@Url.Content("~/Scripts/jquery.validate.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.min.js")" type="text/javascript"></script>
<div class="text">
<h1>
Gestion du compte employeur</h1>
<div style="height: 5px">
</div>
@using (Html.BeginForm())
{
@Html.ValidationSummary(false, "Sauvegarde échouée. Veuillez corriger les erreurs et réessayer.")
<p>@Html.ValidationMessage("_FORM")</p>
<div class="validation-summary-errors">
<span></span>
<ul>
</ul>
</div>
<fieldset style="width: 800px; line-height: 1.8em;">
<legend>Update</legend>
<table style="width: 100%; padding-bottom: 0; padding-top: 0; border: 1">
<tr style="padding: 0 0 0 0; height: 32px">
<td style="width: 180px; border: 0;">
@Html.LabelFor(model => model.employeur.nom)
</td>
<td style="border: 0;">
@Html.TextBoxFor(model => model.employeur.nom, new { @class = "input_txt_nofloat" })
@Html.ValidationMessageFor(model => model.employeur.nom, "*")
@Html.HiddenFor(model => model.employeur.userID, new { @class = "input_txt_nofloat" })
@Html.DropDownList("employeur.type_soc", Model.TypesSocietes)
@Html.ValidationMessageFor(model => model.employeur.type_soc, "*")
</td>
</tr>
<tr style="padding: 0 0 0 0; height: 32px">
<td style="width: 180px; border: 0;">
@Html.LabelFor(model => model.employeur.codeRC)
</td>
<td style="border: 0;">
@Html.TextBoxFor(model => model.employeur.codeRC, new { @class = "input_txt_nofloat" })
@Html.ValidationMessageFor(model => model.employeur.codeRC, "*")
</td>
</tr>
<tr style="padding: 0 0 0 0; height: 32px">
<td style="width: 180px; border: 0;">
@Html.LabelFor(model => model.employeur.adresse)
</td>
<td style="border: 0;">
@Html.TextBoxFor(model => model.employeur.adresse, new { @class = "input_txt_nofloat" })
@Html.ValidationMessageFor(model => model.employeur.adresse, "*")
</td>
</tr>
<tr style="padding: 0 0 0 0; height: 32px">
<td style="width: 180px; border: 0;">
@Html.LabelFor(model => model.employeur.ville)
</td>
<td style="border: 0;">
@Html.TextBoxFor(model => model.employeur.ville, new { @class = "input_txt_nofloat" })
@Html.ValidationMessageFor(model => model.employeur.ville, "*")
</td>
</tr>
<tr style="padding: 0 0 0 0; height: 32px">
<td style="width: 180px; border: 0;">
@Html.LabelFor(model => model.employeur.wilaya)
</td>
<td style="border: 0;">
@Html.DropDownList("employeur.wilaya", Model.Wilayas, "Indiquez la wilaya", new { @style = "width: 232px;" })
@Html.ValidationMessageFor(model => model.employeur.wilaya)
</td>
</tr>
<tr style="padding: 0 0 0 0; height: 32px">
<td style="width: 180px; border: 0;">
@Html.LabelFor(model => model.employeur.tel1)
</td>
<td style="border: 0;">
@Html.TextBoxFor(model => model.employeur.tel1, new { @class = "input_txt_nofloat" })
@Html.ValidationMessageFor(model => model.employeur.tel1, "*")
</td>
</tr>
<tr style="padding: 0 0 0 0; height: 32px">
<td style="width: 180px; border: 0;">
@Html.LabelFor(model => model.employeur.tel2)
</td>
<td style="border: 0;">
@Html.TextBoxFor(model => model.employeur.tel2, new { @class = "input_txt_nofloat" })
@Html.ValidationMessageFor(model => model.employeur.tel2, "*")
</td>
</tr>
<tr style="padding: 0 0 0 0; height: 32px">
<td style="width: 180px; border: 0;">
@Html.LabelFor(model => model.employeur.fax)
</td>
<td style="border: 0;">
@Html.TextBoxFor(model => model.employeur.fax, new { @class = "input_txt_nofloat" })
@Html.ValidationMessageFor(model => model.employeur.fax, "*")
</td>
</tr>
<tr style="padding: 0 0 0 0; height: 32px">
<td style="width: 180px; border: 0;">
@Html.LabelFor(model => model.employeur.email)
</td>
<td style="border: 0;">
@Html.TextBoxFor(model => model.employeur.email, new { @class = "input_txt_nofloat" })
@Html.ValidationMessageFor(model => model.employeur.email, "*")
</td>
</tr>
<tr style="padding: 0 0 0 0; height: 32px">
<td style="width: 180px; border: 0;">
@Html.LabelFor(model => model.employeur.site_web)
</td>
<td style="border: 0;">
@Html.TextBoxFor(model => model.employeur.site_web, new { @class = "input_txt_nofloat" })
@Html.ValidationMessageFor(model => model.employeur.site_web, "*")
</td>
</tr>
<tr style="padding: 0 0 0 0; height: 32px">
<td style="width: 180px; border: 0;">
@Html.LabelFor(model => model.employeur.banque)
</td>
<td style="border: 0;">
@Html.TextBoxFor(model => model.employeur.banque, new { @class = "input_txt_nofloat" })
@Html.ValidationMessageFor(model => model.employeur.banque, "*")
</td>
</tr>
<tr style="padding: 0 0 0 0; height: 32px">
<td style="width: 180px; border: 0;">
@Html.LabelFor(model => model.employeur.agence)
</td>
<td style="border: 0;">
@Html.TextBoxFor(model => model.employeur.agence, new { @class = "input_txt_nofloat" })
@Html.ValidationMessageFor(model => model.employeur.agence, "*")
</td>
</tr>
<tr style="padding: 0 0 0 0; height: 32px">
<td style="width: 180px; border: 0;">
@Html.LabelFor(model => model.employeur.nr_compte)
</td>
<td style="border: 0;">
@Html.TextBoxFor(model => model.employeur.nr_compte, new { @class = "input_txt_nofloat" })
@Html.ValidationMessageFor(model => model.employeur.nr_compte, "*")
</td>
</tr>
<tr style="padding: 0 0 0 0; height: 32px">
<td style="width: 180px; border: 0;">
@Html.LabelFor(model => model.employeur.domaine)
</td>
<td style="border: 0;">
@Html.DropDownList("employeur.domaine", Model.Domaines, "Indiquez le domaine", new { @style = "width: 232px;" })
@Html.ValidationMessageFor(model => model.employeur.domaine, "*")
</td>
</tr>
<tr>
<td style="width: 180px; height: 60px; border: 0;">
</td>
<td style="border: 0;">
<input type="submit" value="Sauvegarder" class="submit" />
</td>
</tr>
</table>
</fieldset>
}
<div>
@Html.ActionLink("Return", "Employeurs", "Home", null, new { @class = "link_no_underline" })
</div>
</div>
最佳答案
在 View 中,您指定要绑定(bind)的模型是 EmployeurFormViewModel
:
@model MyApp.ViewModels.EmployeurFormViewModel
但是,在您指定的 Controller 操作中:
[HttpPost]
public ActionResult Edit(tblEmployeur employeurCrt)
因此,我相信您需要在 View 中指定:
@model [YOUR-NAMESPACE-HERE].tblEmployeur
然后在 View 中引用模型的任何地方(例如)它将是 model.wilaya
而不是 model.employeur.wilaya
等。
您还需要更改以下定义:
public tblEmployeur employeur { get; private set; }
到:
public tblEmployeur employeur { get; set; }
这样它就可以由默认模型绑定(bind)器设置,而不仅仅是由构造函数设置。
希望这对您有所帮助。
关于asp.net-mvc-3 - MVC3 - 发布时模型字段为空(使用 View 模型),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8632640/
我们正在使用 VSTS 构建和发布通过 Xamarin 创建的 iOS 和 Android 应用程序。通过 VSTS 将 Android 应用发布到商店相对简单。有人可以指导我或提供一些如何通过 VS
我一直在研究 Spring Social Facebook 的 publish(objectId, connectionName, data) API ,但不确定此 API 的用法(遗憾的是,由于缺少
我正在使用 django viewflow 创建一个发布流程: 用户创建对象 它进入审核流程,其状态为待处理(公众不可见) 经过审核和批准后,就会发布并公开可见。 如果用户编辑同一实体,则会再次进入审
我正在尝试进行 API 调用,并且 API 需要格式为 XML: Security GetSessionInfo 999999999999 0 2 {
我已经查看了所有 StackOverflow,但没有找到适合我的案例的解决方案我有 405 HttpStatusCode 调用 API/Regions/Create 操作这是我的 baseContro
如果我切换到新版本的SpringBoot,我在启动应用程序时会得到上面的错误信息。这是为什么? 最美好的祝愿史蒂文 pom.xml 4.0.0 de.xyz.microservice spring
我有一个场景,页面导航是从一个域到另一个域完成的。例如,导航是从 http://www.foo.com到 http://www.bar.com在 JavaScript 中单击按钮 重定向时,我需要将用
这半年来一直深耕包头,这个城市比较不错,但是推进项目的难度确实挺大的。与开发产品相比,后者更省心。但是光研发产品,没有项目
我正在阅读有关 Github 版本 的信息,它似乎很适合您的项目。因为我们需要决定将哪些功能用于生产,哪些不用于。 我无法理解的部分是,master 和 release 分支如何在其中发挥作用。 Sh
我将一些代码推送到远程存储库,然后在 GitHub 上创建了第一个版本,并将其命名为 'v0.0.1'。 GitHub 现在显示我现在有一个版本,并且还在“标签”中显示我有一个标签 “v0.0.1”。
如果我有一个具有以下文件/文件夹结构的 GitHub 存储库 github.com/@product/template: /build /fileA /fileB /src /genera
我有一个 Maven 多模块项目。 当代码开发完成后,我们想在 Jenkins 中编写一个分支构建作业,它分支代码,增加主干中的 pom 版本,并删除 -SNAPSHOT 来自分支中的 pom 版本。
我有一个非常大的集合(约 40000 个文档,包含约 20-25 个字段,包括包含一组约 500 个项目的数组字段)和约 2000 个订阅者(他们现在只是机器人)。 因此,当用户订阅整个集合(不包括服
如果我正在使用消息队列构建一个包含数十个发布者/订阅者的系统,那么我似乎有一些网络配置选项: 我可以拥有一个所有机器都使用的集群代理 - 每台机器都没有本地队列 我可以在每台机器上本地安装代理,并使用
我正在使用 Flash Develop,并且创建了一个 ActionScript 3.0 项目。它启动并读取一个 xml 文件,其中包含图像的 url。我已将 url 保留在与 swf 相同的文件夹中
如果我在一个句子中使用 alloc 和 retain 声明一个 NSArray 那么我应该释放 NSArray 对象两次(即[arrayObject release] 2次)? 最佳答案 如果您在同一
我正在尝试在 Node 中实现发布/订阅模式,但不使用 Redis。功能应该是相同的;您可以发布到 channel ,订阅 channel 并收听数据(如果您已订阅);以下是 Redis 功能: pu
编辑:这个问题、一些答案和一些评论,包含很多错误信息。见 how Meteor collections, publications and subscriptions work准确理解发布和订阅同一服
我正在开发一款 DirectX 游戏,我发现在发布版本中我的平均帧速率为 170fps,但是在调试版本中我的帧速率约为 20fps。 我想知道发布和调试版本之间的巨大差异是否正常,特别是因为在调试中我
是否有办法回滚 Windows Azure 网站和 SQL 部署/发布? 我发布了一个网站,现在它导致了很多错误,我想回到之前的状态并进一步处理代码。 这可能吗? 最佳答案 如果您使用 Git 或 T
我是一名优秀的程序员,十分优秀!