有什么方法可以使用来自请求参数的值更改绑定前缀?
我有许多嵌套的搜索弹出窗口,并且它们都共享相同的ViewModel。
我可以在请求搜索过滤器时向所有字段添加绑定前缀,但是我不知道如何使[Bind(Prefix =“”)]与来自请求参数的值一起使用。
// get the search filters with the bindingPrefix we need
public ActionResult Search(string bindingPrefix)
{
ViewData.TemplateInfo.HtmlFieldPrefix = bindingPrefix;
SearchViewModel model = new SearchViewModel
{
BindingPrefix = bindingPrefix
};
return PartialView("_SearchFilters", model);
}
// post the search filters values
[HttpPost]
public ActionResult Search([Bind(Prefix = model.BindingPrefix)]SearchViewModel model)
{
}
最佳答案
我不知道您为什么要这样做,但这应该可行。
在视图上的表单中,具有隐藏的价值
@Html.Hidden("BindingPrefix", Model.BindingPrefix)
将操作修改为以下内容
[HttpPost]
public ActionResult Search(SearchViewModel model)
{
UpdateModel(model, model.BindingPrefix);
}