我有以下场景,我有一个使用 ajax 提交的,使用以下代码:
$("#cmdAjaxSave").click(function (evt) {
evt.preventDefault();
var $form = $('#frmItem');
if ($form.valid()) {
ajaxSave();
}
});
function ajaxSave() {
if (!onBeforeSubmit()) return; //item is not valid, so the ajax call should not be executed
//var token = $('[name=__RequestVerificationToken]').val();
popup('ajaxSplash');
$.ajax({
type: "POST",
url: '@Url.Action("Index")',
data: $("#frmItem").serialize(),
success: function (html) {
//console.log(html);
$("#formDiv").empty();
$("#formDiv").append(html);
initItemPage();
alert("Item was saved successfully");
},
error: function () { popup('ajaxSplash'); onFailure(); }
});
}
我在这里看到的问题是,即使“frmItem”在我到达客户端时返回“true”,ModelState 也是无效的。专门针对三个属性,它们实际上具有正确的值。
深入研究最初编写此代码的开发人员编写的代码,我发现例如这个属性:
@Html.TextBoxFor(model => model.Item.Service.CPC_BW, htmlAttributes: new { @class = "Text", @onkeyup = "validItem();", @id = "SrvCPCBlk" })
实际上是这样定义的:
private double _CPC_BW;
[Required]
[Range(0, 100000, ErrorMessage = "CPC value required")]
public string CPC_BW { get { return String.Format("{0:F}", _CPC_BW); } set { _CPC_BW = Convert.ToDouble(value); } }
我认为他这样做是因为 TextBoxFor 没有提供一种明显的方法来格式化数字,即使它看起来很可疑,我也不知道这怎么会导致错误。
表单的Html是这样渲染的
<div id="itemPopUpForm">
@{Html.EnableClientValidation();}
<div id="formDiv">
@{ Html.RenderPartial("ItemData", Model, new ViewDataDictionary() { { "Machines", ViewBag.Machines }, { "WarehouseList", ViewBag.WarehouseList }, { WebConstants.FORM_ID_KEY, @ViewData[WebConstants.FORM_ID_KEY] } }); }
</div>
</div>
部分视图包含在 ajax 请求中提交的表单。