数据表提交表单服务器端数据
对于那些使用 Datatables js 插件的人,我如何创建 此示例包含服务器端数据?
该示例使用 HTML 中硬编码的数据。
For those of you that use the Datatables js plugin, how can I create this example with server side data?
The example uses data that is hardcoded in the HTML.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您基本上会执行以下操作:
他们已经提供了 jquery 序列化代码,因此我不会显示这一点,但是 jQuery (至少)需要 AJAX 函数:
在服务器端 PHP 文件上,您只需获取正确的表单数组并解析您的值($_POST)。
You would basically do the following:
They already provide the jquery serialize code so I won't show that, however the jQuery AJAX function will be needed (at the least):
And on your Server side PHP file you just grab the correct form array and parse your values ($_POST).
我遇到了同样的问题,并且不想进行 ajax 保存,所以我这样做了:
这个想法是我获取当前不在 dom 中的所有输入并将它们移动到隐藏的容器中。
I had the same problem and didn't want to do an ajax save, so I did this:
The idea is that I take all the inputs that are currently not in the dom and move them inside a hidden container.