建议设计 UI 屏幕以生成 XML 的方法
设计用于生成 XML 的 UI 的最佳方法是什么?
在我们的例子中,生成的 XML 可能具有少量属性,但这并不确定。 XML 文件可能会增长以适应业务条件。
设计这样的屏幕的最佳方法是什么?我正在考虑两种方法
1. Design a spread sheet which generates xml. Keep the excel as a download
link,ask the user to download it and generate the xml . (I have
seen this approach in a couple of web applications in internet)
[Will this work in a non-windows based OS'].
2. Start designing the UI the normal way(like providing a bunch a textboxes)
[Is this way even possible ?]
还有其他方法吗?
What is the best way to design an UI for generating an XML?
In our case, it is possible for the XML generated to have small number of attributes,but this is not certain. The XML file may grow to accommodate business conditions.
What is the best way to design such a screen. I am thinking of 2 approaches
1. Design a spread sheet which generates xml. Keep the excel as a download
link,ask the user to download it and generate the xml . (I have
seen this approach in a couple of web applications in internet)
[Will this work in a non-windows based OS'].
2. Start designing the UI the normal way(like providing a bunch a textboxes)
[Is this way even possible ?]
Are there any other approaches?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
采取选项 2(可能与选项 1 相同)。
设计一个优化的用户界面,允许用户编辑和查看数据。
不要针对您正在使用的数据传输/存储机制优化用户界面。
可以,只要最终用户拥有 Excel 或具有兼容宏语言的电子表格即可。如果您的目标是公众,那么我不会打赌是这种情况,而是建议使用基于网络的用户界面。
Take option 2 (which might be the same as option 1).
Design a user interface optimised for allowing users to edit and view the data.
Don't optimise the user interface for the data transport/storage mechanism you are using.
Yes, so long as the end user has Excel or a spreadsheet with a compatible macro language. If you are targeting the public, then I wouldn't bet on this being the case and would suggest a webbased UI instead.