导出为 csv 的替代方法
我需要一种导出到 csv 文件的替代方法。基本上,要求是能够允许用户编辑数据库中任意数量的数据。目前,选项是将数据导出为 csv,然后用户可以在 Microsoft Excel 中更新它们。因此,人们可以编辑它,而无需实际安装我们的网络应用程序。但是,由于我们在 Excel 上使用 CSV 时遇到了一些问题,因此我们试图避免这种方法。有人可以推荐替代解决方案吗?
I need an alternative to exporting to a csv file. Basically, the requirement is to be able to allow the user to edit any amount of data from the database. Currently, the option is to export the data to csv and then the user can update them in Microsoft Excel. Thus, one can edit it without actually needing to have our web application installed. However, we are trying to avoid this approach due to some issues we encountered with working with CSV on Excel. Can someone recommend an alternative solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
大多数编程语言都有允许您直接导入/导出 Excel 的库,这可以避免许多此类问题。这意味着您不必告诉用户在保存文件时执行特殊的“另存为”操作。
谷歌可以提供其他语言的选项。
Most programming languages have libraries to allow you to import/export excel directly which avoids many of these issues. This means you won't have to tell you users to do special Save As when saving their files.
Google can provide options for other languages.