将 Ruby on Rails 应用程序中的数据导入 Excel 电子表格的最佳方法是什么?
我知道您在想什么,只需将数据下载为 CSV 并导入 Excel 即可。
不幸的是,我们需要的是用户从 Rails 应用程序中选择一些数据,然后轻松地(即尽可能少的用户干预 - 最好按一个按钮)将其导出,并在包含各种公式和数据的现有 Excel 电子表格中打开它。宏等,将应用于数据。
我理想的解决方案将涉及 Rails 端的大部分繁重工作,因为这就是我的技能所在,但我想可能有某种 Excel Web 集成内容可能会有所帮助。
无论如何,我可以提供一些关于解决此问题的好方法的建议吗?
I know what you're thinking, just download the data as a CSV and import into Excel.
Unfortunately what we require is for a user to choose some data from a Rails app then easily (i.e. with as little user intervention as possible - ideally a single button press) export it, and open it in an existing Excel spreadsheet that contains various formulas and macros, etc, which will be applied to the data.
My ideal solution would involve most of the heavy lifting at the Rails end, as that's where my skills lie, but I guess there could be some sort of Excel web integration stuff that might help.
Anyway, can I have some recommendations on good approaches to this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
axlsx 可能是深度 Excel 工作最完整的实现。
https://github.com/randym/axlsx
这是构建微软 skydrive 模板之一的示例:
axlsx is probably the most complete implementation for deep excel work.
https://github.com/randym/axlsx
Here is an example that builds one of microsoft's skydrive templates:
至少导出部分相当不错 - 这里有几个候选宝石:
我怀疑(希望!)一旦你有了 XLS 形式的数据,其余的应该在客户端进行处理。
查看 Excel 的 Web 查询工具是否有任何价值? 如果用户可以定义他们的选择标准,以便不经常更改,那么自定义页面(可能只是提供一个表格)可以将数据直接放入他们的 Excel 会话中。 只是一个想法...
The export part is reasonably well covered at least - here's a couple of candidate gems:
I suspect (hope!) that once you have your data in XLS form, the rest should be plumbing on the client side.
Is there any value in looking at Excel's Web Query facility? If the user can define their selection criteria such that change is infrequent, then a custom page (perhaps just delivering a table) could drop the data straight into their Excel session. Just a thought...
Ryan Bates 刚刚在railscasts.com 上发布了免费的简短截屏视频
导出 CSV 和 Excel
Ryan Bates just released a free short screencast at railscasts.com on
Exporting CSV and Excel