动态表行未通过 jquery ajax 调用更新

发布于 2024-07-18 11:24:49 字数 1084 浏览 5 评论 0原文

通过 jquery ajax 调用提交数据时遇到一些棘手的问题。 基本上,使用 jquery动态添加到屏幕上的管状网格中的表单字段的表单值不会在批量保存命令上更新。

基本上我有一个网格列表,它显示保存到数据库的所有当前行,每列包含表单字段。 然后,我在页面顶部有一个表单,这是典型的添加另一个详细信息表单。 您键入您的值,按“添加”,这将通过 jquery json ajax 调用保存到数据库,并且您的表单数据将被添加并反映在列表中的新行中。 (这部分有效)

我的问题在于当您希望更改新添加的 jquery 表行中的表单值时。 当按下保存按钮时,只有任何已构建的表行将被重新保存。 您的动态行表单数据不会保存。 更新调用使用 jquery ajax 和 ASP.NET MVC 模型绑定。 在“添加”上,我将 asp.net mvc“部分视图”返回到我的 jquery ajax 响应,并使用 $("#tablename tr:last").after(result) 将其添加到网格列表中)

正如我所说,我已经推断出,新的动态添加的行不会更新。 我的 MVC 模型绑定列表中有一个 IList 集返回到我的控制器操作方法,其中包含整个项目列表,减去新创建的 jquery 动态添加的表单字段行。 这就是问题所在,也是为什么当您执行页面刷新时,行会返回到初始添加时输入的原始表单值。

知道为什么我的 IList 不包含这些动态添加的行吗? 在 Firebug 中检查,它们在名称属性中使用相同的命名约定,一切都应该没问题。

格雷厄姆.

5 月 1 日 11:00 GMT+10 更新:将模型绑定从 IList 更改为 FormCollection 时,我确实收到了这些值。 我不想使用 FormCollection 而不是模型绑定,但它引出了一个问题,如果我可以通过 FormCol 正确获取它,为什么不使用 IList 模型绑定器呢? 我已将数组条目与工作项进行了比较,它们都符合相同的标准和值。

Having a bit of a hairy issue when submitting data over a jquery ajax call. Basically, form values of form fields which have been dynamically added to the screen into a tubular grid using jquery are not updating on a batch save command.

Basically I have a grid listing which displays all current rows saved to the database with each column containing form fields. I then have a form at the top of the page, which is your typical add another detail form. You type your values, press "add" this is saved to the database via a jquery json ajax call, and your form data is added and reflected in a new row in the listings table. (this part works)

My problem lies with when you wish to change the form values within the newly added jquery table row. When the save button is pressed, only any of the already built table row's will be re-saved. Your dynamic row form data does not save. The update call uses jquery ajax and ASP.NET MVC model binding. On the "add" I am returning an asp.net mvc "partial view" to my jquery ajax response and it is being added to a grid listing table using $("#tablename tr:last").after(result).

What I have deduced already is, as said, the new dynamically added row does not update. I have an IList<Item> set returned in my MVC model binding list to my controller action method which contains the entire list of items, minus the newly created jquery dynamic-added form field rows. This is the problem and why when you perform a page refresh, the rows are back to the original form values entered on initial add.

Any ideas why my IList<Item>'s would not include these dynamically added rows? Inspecting in Firebug they use the same naming convent in their name attribute and all should be fine.

Graham.

Update 1 May 11:00 GMT+10: I do receive the values when changing the Model Binding from IList to FormCollection. I do not want to have to use FormCollection rather than model binding, but it begs the question if I can get it correctly through FormCol, why not IList model binder? I have compared the array entry to a working item, and they all fit the same criteria and values.

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

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

发布评论

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

评论(3

灵芸 2024-07-25 11:24:49

我不是 ASP 程序员,但我做了很多 jquery 工作。 如果我正确理解您的问题,则动态生成的行不会绑定到将执行更新操作的回调函数。

您可以使用 jQuery“live”函数(正如 Wikidkaka 试图告诉您的那样)将动态生成的元素绑定到回调,也可以在 ajax 调用返回时触发的回调函数中手动绑定新创建的元素。

我建议使用(我相信)最新版本的 jQuery 中添加的本机 live 函数。 它将使您不必编写额外的行来手动绑定回调,并使代码维护更容易。

所以改变

$('div.your-save-buttons').click(updateFunction);

$('div.your-save-buttons').live(updateFunction);

I'm not an ASP programmer, but I do a heck of a lot of jquery work. If I understand your problem correctly, your dynamically generated rows are not being bound to the callback functions that will perform your update operations.

You can bind the dynamically generated elements to a callback by either using the jQuery 'live' function (as Wikidkaka was trying to tell you) or you can bind the newly created elements manually in the callback function that is fired when the ajax call returns.

I would recommend using the native live function that was added in (I believe) the latest release of jQuery. It will save you from having to write additional lines to manually bind the callbacks and makes code maintenance easier.

So change:

$('div.your-save-buttons').click(updateFunction);

to

$('div.your-save-buttons').live(updateFunction);
羁拥 2024-07-25 11:24:49

使用插件 livequery 来完成您想要做的事情。 您可以在这里找到它 - http://docs.jquery.com/Plugins/livequery

这不适用于大多数动态添加的元素:


$("选择某事").onSomeEvent("做某事");

但是使用 livequery 插件,您可以通过将 JS 代码更改为如下所示来使其工作:


$("选择某事").livequery('事件名称','做某事');

Use the plugin livequery for what you are trying to do. You can find it here - http://docs.jquery.com/Plugins/livequery

This does not work on most dynamically added elements:


$("select something").onSomeEvent("do something");

But with livequery plugin you can make it work by changing your JS code to something like below:


$("select something").livequery('event name','do something');

风轻花落早 2024-07-25 11:24:49

如果模型上的属性是整数列表,则可以使用 IEnumerable来获取自动模型绑定。 这适用于参数为 IEnumerable 的 Action 方法和参数为具有 IEnumerable 属性的 Model 的 Action 方法。 例如,像这样:

<%= Html.Hidden("myField", 1) %>
<%= Html.Hidden("myField", 1) %>

public ActionResult Update(IEnumerable<int> myField) { }

public ActionResult Update(MyModel myModel) { }
public class MyModel {
    public IEnumerable<int> myField { get; set; }
}

If the property on your Model is a list of integers, you can use IEnumerable<int> to get automatic model binding. This works both for an Action method whose parameter is an IEnumerable<int> and an Action method whose parameter is a Model that has a property which is an IEnumerable<int>. For example, like this:

<%= Html.Hidden("myField", 1) %>
<%= Html.Hidden("myField", 1) %>

and

public ActionResult Update(IEnumerable<int> myField) { }

or

public ActionResult Update(MyModel myModel) { }
public class MyModel {
    public IEnumerable<int> myField { get; set; }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文