将 2 个 html 文件合并到一个虚拟机中(速度宏)
我有两个 html 文件,我使用了 2 个不同的框架为智能手机和平板电脑等其他设备创建了 2 个不同的 Web 应用程序。
现在我必须使用 Velocity Macro,并将这两个 html 文件合并到一个虚拟机中,该虚拟机根据配置生成 2 个输出。
我一直在寻找方法来做到这一点,我发现了这个: http://www .roseindia.net/apachevelocity/macro-wrap-html.shtml
我的问题是我是否需要像链接中那样构建一个Java文件,然后创建一个vm文件,或者我可以只创建一个vm文件不做有java文件吗?
如果我的问题不清楚,请告诉我,我会尽力解释更多。
I have two html files, I used 2 different frameworks to create 2 different web application for smart phones and other devices such as tablets.
now I have to use Velocity Macro, and merge this two html files into a single vm, that generates 2 outputs depending on a configuration.
i have been searching for methods to do this and I found this: http://www.roseindia.net/apachevelocity/macro-wrap-html.shtml
My question is do I need to build a Java fie just like in the link and then make a vm file, or can I just make a single vm file without making any java files?
if my question in unclear let me know I try to explain more.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此处显示的 Java 类只是为了演示模板,模板所做的只是演示如何使用 Velocity
#macro
指令。IMO 将两个 HTML 文件放入单个 VM 模板中是一个坏主意,因为它会很大并且难以理解、修改和调试。相反,请考虑使用
#parse
或#include
指令。或者,考虑一种更高级别的机制来直接为适当的页面提供服务,而不是将模板决策过程推入模板本身 - 这可以说是最好的解决方案。
The Java class shown there is just to demonstrate the template, and all the template does is demonstrate how to use the Velocity
#macro
directive.IMO putting both HTML files into a single VM template is a bad idea, because it will be large and difficult to understand, modify, and debug. Instead, consider using the
#parse
or#include
directives.Alternatively, consider a mechanism at a higher level to serve the appropriate pages directly instead of pushing the template decision-making process into the templates themselves--this is arguably the best solution.