如何将 jQuery SlickGrid 与 PHP / MySQL 一起使用(加载服务器数据并保存更改)
请在 SlickGrid 代码中找到的所有示例中,数据数组是随机生成的客户端。
获取:我需要知道如何使用 PHP 从 MySQL 数据库获取此信息,并使用 jQuery / AJAX 将其返回到 SlickGrid。
保存:我已经在 StackOverflow 上找到了一个链接,用于使用隐藏输入保存网格中的数据 (在 SlickGrid 中保存更改),但目前还不清楚我应该如何在访问 PHP 脚本时处理这些数据。
一些详细的帮助和/或指示将不胜感激,我是一个菜鸟,我没有找到关于这个很棒的插件的足够文档。
Please, in all the examples found in the SlickGrid code, the data array was randomly generated on the client side.
Getting: I need to know how to use PHP to fetch this information from a MySQL Database and return it using jQuery / AJAX to the SlickGrid.
Saving: I already found a link on StackOverflow for saving data from the grid using a hidden input (Saving changes in SlickGrid) but it's not really clear how I ought to handle this data on getting to the PHP script.
Some detailed help and/or pointers will be appreciated, I'm rather a noob and I did not find adequate documentation on this awesome plugin.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SlickGrid 需要一组数据才能填充表。您可以在 PHP 中将其创建为字符串,并在创建 SlickGrid 时在 JavaScript 中使用它。
请注意;这是快速、肮脏且未经测试的!
PHP
JavaScript
SlickGrid needs an array of data in order to populate the table. You can create this as a string in PHP and use that in your JavaScript when you create your SlickGrid.
Please note; this is quick, dirty and untested!
PHP
JavaScript