如何创建基于 Web 的管理界面
我计划创建一个简单的基于 Web 的界面,以 json 格式存储管理输入 (供稍后在同一主机上运行的应用程序使用)
示例 json 输出位于: http://www .json.org/example.html 内容将是用户联系人(电子邮件、姓名、电话号码、照片等)。
每个登录用户都需要有一个 conf 文件。 以及一个管理员用户,用于查看其组中的所有配置文件。
我想知道什么技术最适合创建这个框架。
我可以通过 servlet 等来做到这一点..但是,可能有更简单的东西..
感谢大家的提前回复。
I'm planning to create a simple web based interface that stores administration input in json format
(for use later by an applicaiton running on the same host)
example json output is here: http://www.json.org/example.html
The content would be user contacts (email, name, phone number, photo etc..)
There would need to be a conf file per logged in user.
and an administrator user for viewing all config files in his group.
I'm wondering what technology is best to create this framework.
I could do it via servlets etc.. however, there may be something simpler..
Thanks to all for your replies in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
构建管理界面实际上与构建 Web 应用程序没有什么不同。使用您选择的语言中可用的任何框架。
Building an admin interface is really no different from building a web app. Use whatever frameworks are available in your language of choice.