将 dojo 数据网格导出到 CSV 文件
我正在寻找一个 Javascript 函数,它将把我的数据网格(zero.grid.DataGrid)导出到一个 CSV 文件或类似的文件中,该文件可以由电子表格应用程序打开。
有没有标准的方法可以做到这一点..
I am looking to get a Javascript function which will export my datagrid (zero.grid.DataGrid) full of data into a CSV file or something similar which can be opened by a spreadsheet application.
Is there any standard way of doing this out there..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这就是使用 PHP 服务器端脚本完成此操作的方法。
CSVexport.php:
This is how you would accomplish that using a PHP server-side script.
CSVexport.php:
我在使用 Exporter 插件和增强网格(使用 servlet 作为后端)时遇到了困难。最后我通过使用 iFrame 使其工作:
我已经写了一篇博客文章,这样我就不必再次搜索。
在Dojo中从Grid导出数据
PS:推荐使用iFrame仅适用于内部/内部 Web 应用程序。
I had tough time with using Exporter plugin with EnhancedGrid using servlet as backend. Finally I made it work by using iFrame:
I have written a blog post so that I don't have to search again.
Export Data from Grid in Dojo
PS: It is recommended to use iFrame only for internal/in-house web applications.
我正在寻找相同的内容并得到你的问题,但我找到了答案...
你必须使用 dojox.Enhancedgrid 的 Exporter 插件
“Exporter 插件提供将网格数据导出为给定格式的功能”。
http://docs.dojocampus.org/dojox/grid/EnhancedGrid/plugins/Exporter问候
I'm searching for the same and get your question, but i find the answer...
You must use the Exporter plugin for the dojox.Enhancedgrid
"Exporter plugin provides functions to export the grid data into a given format".
http://docs.dojocampus.org/dojox/grid/EnhancedGrid/plugins/Exporter
Regards