部分视图模型更新父视图

发布于 2024-10-24 04:15:03 字数 860 浏览 1 评论 0原文

不知道如何正确表达。 所以我有一个具有强类型视图模型的视图:

class MyViewModel
{
    public string MyName get; set;
    public string DateOfBirth get; set;
    public Address MyAddress get; set;
}

class Address
{
    public string Street get; set;
    etc...
}

我正在使用 MyViewModel 加载初始视图,并使用以下内容显示部分视图来加载地址(这样可以重用地址输入)。

该视图包含一个下拉列表,其中包含用户名列表,在下拉列表中选择一个值会调用 ajax .change 函数,该函数执行以下操作:

$.get('/User/DisplayAddress/', {'selection': selection }, function (html) {

$('#addressBlock').html(html);

});

一切都很好..并且 html 已加载..但是,视图模型并且该地址现已断开。因此,当我提交页面时,ViewModel 中的 MyAddress 现在包含 null。

我应该如何在 mvc2/ajax 中正确执行此操作?

我使用的另一种方法是使用 '<% RenderPartial("viewname", Model.MyAddress); %> 这是有效的,但我仍然必须返回 json 中的数据,并在 java 函数中手动将值添加到字段中 - 这很好用..但是当 MyAddress 字段包含多个字段并将值硬编码到输入中时,它非常混乱田野看起来很可怕。

not sure how to word this correctly..
so i have a view which has a strongly typed viewmodel as:

class MyViewModel
{
    public string MyName get; set;
    public string DateOfBirth get; set;
    public Address MyAddress get; set;
}

class Address
{
    public string Street get; set;
    etc...
}

i'm loading the inital view with MyViewModel and using the following to display a partial view to load the address (this way so the address input can be reused).

the view contains a dropdown list with a list of user names in, selecting a value in the drop down calls a ajax .change function which does the following:

$.get('/User/DisplayAddress/', {'selection': selection }, function (html) {

$('#addressBlock').html(html);

});

that all works great..and the html is loaded in.. however, the viewmodel and the address is now disconnected. so when i submit my page, the MyAddress from the ViewModel now contains a null.

How should i be correctly doing this in mvc2 / ajax?

another approach i used was to use the '<% RenderPartial("viewname", Model.MyAddress); %>
which works but i still have to return the data in json and add the values to the fields manually in a java function - this works well.. but its very messy when MyAddress field my contain several fields and to hardcode adding the value into the input fields just looks horrible.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南冥有猫 2024-10-31 04:15:03

问题是从部分插入 HTML 时绑定被搞乱了。
我的部分视图没有遵循相同的命名空间,因此输入字段丢失了与父视图模型的绑定。

即我的文本框现在具有命名约定 MyViewModel.Address.Street 等。

我使用 jquery 方法用 HTML 替换 div 容器。问题是显示 html 时绑定被搞砸了。

我将文本框的“名称”元素设置为与输入模型相同,这在插入部分时保持了绑定。

理想情况下,我会使用“平面”视图模型而不是这种“继承”方法,但在这种情况下我无法做到。

the problem was the binding got screwed when insert the HTML from the partial.
my partial view didnt follow the same namespace so the input fields lost the binding to the parentview model.

i.e. my textbox now has the naming convention MyViewModel.Address.Street etc.

i used the jquery approach to replace the div container with the HTML. the problem was the binding had got screwed when displaying the html.

i set up the 'name' element of the textboxes to use the same as the inputmodel and this kept the binding when inserting the partial.

ideally, i would use a 'flat' viewmodel instead of this 'inheritance' approach but i wasnt able to in this instance.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文