用于从对象和/或 JSON 填充 HTML 模板的库
我想使用某种标签构建 HTML 模板,并使用解析器来填充来自我的源的数据。我获取 JSON 和/或 POJO 形式的数据。
对这样的解析器有什么建议吗?我需要的是简单而轻松的东西。到目前为止我对 Java Mustache 有所了解。那是最好的吗?
I would like to build HTML templates with some kind of tags and have parser that will populate it with data from my source. I get data as JSON and/or POJO.
Any suggestions on such parser? SOmething simple and light is what I need. So far I know about Java Mustache. Is that the best out there?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您希望在浏览器中进行替换,即在 html 页面中发出一个接收 json 对象的 ajax 请求,然后想要用该对象中的任何内容替换 html 的部分,那么您可以使用 javascript 模板,就像jqote2。我用过它并且运气很好。
如果您希望在将 html 发送到浏览器之前从 pojo 在 java 端进行替换,那么有很多选项,例如 jsp、freemarker 和velocity
If you are looking to do the substitution in the browser, i.e. in your html page you make an ajax request that receives a json object and you then want to replace portions of your html with whatever is in that object then you can use javascript templating, like jqote2. I've used it and had good luck.
If you are looking to make the substitutions on the java side from a pojo, before sending the html to the browser then there are plenty of options like jsp, freemarker, and velocity