是否可以仅使用 HTML5 本地数据库而不使用 Mysql 从 Excel 或 CSV 文件中收集数据?
这是一个示例:
我的网页上有一个 HTML 表单
我想要收集 Excel 或 CSV 工作表中表单的所有数据(数据,哪个用户将提交)。
是否仅适用于 HTML 5?或者需要Mysql、php、apache 等?
我将使用的浏览器是:Google Chrome,无需考虑其他浏览器
应用程序将在本地PC上运行。如果 HTML5 本地数据库无法实现,我将安装便携式 XAMPP。
任何演示、示例将不胜感激?
It's a example:
I have a HTML form on a webpage
I want to collect all data of form ( Data, which user will submit) in Excel or CSV sheet.?
Is it possible with HTML 5 only? or will be required Mysql, php, apache etc?
Browser I will use is : Google Chrome , no other browser need to consider
Application will run on local PC. if it's not possible with HTML5 local database, I will install portable XAMPP.
Any demo , example would be appreciated?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
LocalStorage 是一个键/值存储,实际上没有任何方法可以改变 Chrome 决定保存该数据的方式,以便将其写入 CSV 文件。
LocalStorage is a key/value store, and there's not really any way to change the way Chrome decides to save that data in order to get it to write it to a CSV file instead.
也许尝试使用 html5 web sql 数据库而不是本地存储,因为您正在处理表格数据。
HTML 5 Web SQL 数据库文章
HTML 5 数据库演示
Maybe try using an html5 web sql database rather than local storage, since you're dealing with tabular data.
HTML 5 Web SQL Database article
HTML 5 Databases demo