网络上的海量数据输入可行吗?

发布于 2024-07-13 01:02:38 字数 142 浏览 9 评论 0原文

有没有什么好的方法来设计一个用于海量数据录入的网页呢? 数据网格似乎是处理此类数据输入的最佳方式,我认为像 Access 或 SQLite+Frontend 这样的客户端应用程序比 Web 更适合这种情况。

具有数据输入页面的网站链接将不胜感激。

Is there any good way to design a web page for massive data entry? Datagrids seem to be the best way to handle this type of data entry and I think a client application like Access or SQLite+Frontend would be better suited for this than the web.

Links to sites with a page for data entry would be greatly appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

冰之心 2024-07-20 01:02:38

如果您搜索的话,可以找到大量可用的网页网格条目控件。 问题是确保你不会花 2 小时输入数据然后让网络瘫痪,我不知道是否有状态的自动异步持久性,或者你是否必须自己推出。

There are plenty of grid entry controls for web pages available if you search for them. The issue would be making sure you don't spend 2 hours entering data and then have the network go down, I don't know whether any have automatic asynchronous persistence of the state, or if you have to roll your own.

尝蛊 2024-07-20 01:02:38

我没有看到网站上的数据网格与胖客户端应用程序上的数据网格之间有很大的区别。 使用 AJAX,您甚至可以在 Web 应用程序中进行立即验证和自动保存。

将其作为 Web 应用程序进行的主要原因是允许许多人访问该应用程序而不必担心部署。 不将其作为 Web 应用程序的主要原因是为了避免更复杂的基础设施(至少一台额外的服务器)和编程工作。

I don't see the big difference between a data grid on a website vs. a data grid on a fat client app. Using AJAX, you can even do immediate validation and autosave in a webapp.

The main reason to do it as a webapp would be to allow many people to access the app without having to worry about deployment. The main reason not to do it as a webapp would be to avoid the somewhat more complex infrastructure (at least one additional server) and programming effort.

滴情不沾 2024-07-20 01:02:38

ajax 自动保存 最终可能包含实现问题的答案。

ajax autosave may eventually contain an answer to the implementation question.

过期以后 2024-07-20 01:02:38

重要的是让所有内容都可以通过键盘访问,并尽可能减少记录之间的等待时间。 因此,无需单击提交按钮,也无需等待页面重新加载。

所有这些都可以通过 JavaScript 来完成。 在让用户开始输入下一条记录的项目之前不必等待一条记录被提交和处理,这将特别有用。

The important part would be to make everything keyboard-accessible, and to reduce as much as possible the wait time between records. So no clicking submit buttons and no waiting for page reloads.

All of this can be done with JavaScript. It would be especially useful to not have to wait for one record to be submitted and processed before letting the user start entering items for the next record.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文