XForms:如何处理发生变化的实例数据?
目前我正在开发一个 XForms 应用程序来改变 XML 数据。该数据来自本地 XML 文件。该文件以静态方式从另一个应用程序导出并读入该应用程序。问题是每次数据发生变化时(XML 结构保持不变)。如何在 XForms 中解决这个问题?我在我的应用程序中使用 XSLTForms。
At the moment I am working on an XForms application to mutate XML data. This data comes from a local XML file. The file is exported from another application in a static way and read into the application. The problem is that every time the data changes (the XML structure remains the same). How can I fix this in XForms? I use XSLTForms in my application.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
XSLTForms 无法直接访问本地数据文件,因为出于安全原因,Javascript 永远不允许这样做。
对于仅本地处理,始终可以运行一个最小的本地 HTTP 服务器。
如果数据文件独立变化,则会出现另一个问题:根据客户端-服务器架构,XForms 只能定期尝试检查文件内容。
-阿兰
XSLTForms cannot directly access local data files because Javascript is never allowed to do that for security reasons.
For a local only treatment, it's always possible to run a local HTTP server which can be minimal.
If the data file is changing independantly, there is another problem: according to the client-server architecture, XForms can only periodically try to check the file contents.
-Alain