我有一个表单,其文本框是通过循环生成的并包含其默认值。但是在提交后,我得到了它的默认值,而不是刚刚更新的值。
这是cshtml
代码
<fieldset>
<legend>Module <small>Edit</small></legend>
@using (Html.BeginForm("Edit", "Module"))
{
@Html.ValidationSummary(true)
@Html.HiddenFor(m=>m.Id)
for(var i = 0; i < Model.Properties.Count(); i++)
{
@Html.HiddenFor(model=>Model.HiddenProperties[i].Value)
<label class="label">@Model.Properties[i].Name</label>
<div class="input-block-level">@Html.TextBoxFor(model => Model.Properties[i].Value, new { @value = Model.Properties[i].Value })</div>
}
<div class="form-actions">
<button type="submit" class="btn btn-primary" id="Submit">Save changes</button>
@Html.ActionLink("Cancel", "ModuleList", null, new { @class = "btn " })
</div>
}
</fieldset>
知道我在做什么错误吗?我正在使用 hiddenfor 以便我可以检查用户是否更改了以前的值。
编辑1: 我试过
new { Value = Model.Properties[i].Value }
和
new { @Value = Model.Properties[i].Value }
仍然没有工作。
Edit2: 刚刚意识到它默认显示当前值,所以我删除了 textboxfor 中的新部分。仍然没有在控制器的 post 方法中获得更新的值。所以现在我有
<div class="input-block-level">@Html.TextBoxFor(model => Model.Properties[i].Value)</div>
Edit3:这是使事情更清晰的图像
现在在下图中,我尝试将999888MicrophoneArrayRackModuleId
的值更改为99988877 ,只需在当前值的末尾键入 77,然后单击按钮save changes
单击save changes
按钮后,我被转发到HttpPost
方法,并在检查module
方法中的参数后,我看到了图片中显示的值。我期待它是99988877但它显示999888
Edit4: 在从 chrome 运行开发人员工具时,我检查了 network->httppost method->Headers->formdata 这就是它显示的内容
Id:50
HiddenProperties[0].Value:999888
Properties[0].Value:99988877
HiddenProperties[1].Value:000-00000-000
Properties[1].Value:000-00000-000
HiddenProperties[2].Value:1a2b3c
Properties[2].Value:1a2b3c
这是我在控制器的 post 方法中期望的值,但那没有发生。
Edit5: 正如达林所说,我在视图中添加了名称字段,现在看起来像
for(var i = 0; i < Model.Properties.Count(); i++)
{
@Html.HiddenFor(model=>model.HiddenProperties[i].Name)
@Html.HiddenFor(model=>model.HiddenProperties[i].Value)
<label class="label">@Model.Properties[i].Name</label>
<div class="input-block-level">@Html.TextBoxFor(model => model.Properties[i].Value)</div>
}
还是不行
编辑6: 模型
public class PropertyViewModel
{
public string Name { get; set; }
public string Value { get; set; }
}
public class EditModule
{
public long Id { get; set; }
public List<PropertyViewModel> Properties { get; set; }
public List<PropertyViewModel> HiddenProperties
{
get { return Properties; }
set { Properties = value; }
}
}
控制器
[HttpGet]
public ActionResult Edit(long id)
{
var module = _repository.GetModuleProperties(id);
return View(module);
}
[HttpPost]
public ActionResult Edit(EditModule module)
{
if (ModelState.IsValid)
{
_repository.SaveModuleEdits(module);
Information("Module was successfully edited!");
return RedirectToAction("ModuleList", "Module", new {area = "Hardware"});
}
Error("Edit was unsuccessful, if the problem persists please contact Merijn!");
return RedirectToAction("ModuleList", "Module", new { area = "Hardware" });
}
存储库
public EditModule GetModuleProperties(long id)
{
var properties = new EditModule
{
Id = id,
Properties =_dbSis.Modules.Where(t => t.Id == id)
.SelectMany(m => m.PropertyConfiguration.PropertyInstances.Select(i => new PropertyViewModel
{
Name = i.Property.Name,
Value = i.Value
})).ToList()
};
return properties;
}