fex-team / fis-velocity-tools

Like velocity-tools, we focus on the front-end integrated solution.
29 stars 23 forks source link

#require指令引用静态资源绝对路径的问题 #11

Open flyingzl opened 9 years ago

flyingzl commented 9 years ago

J2EE应用部署后,有一个context,一般我们可以通过$request.getContextPath来获取绝对路径,然后拼接上静态资源例如,例如

由于#requrie是根据map.json表来映射的,而且我也不可以在fis-conf.js中把url写死,有什么更好的解决方法?

2betop commented 9 years ago

url 可以不写死,通过 domain 来动态加前缀。

http://fex-team.github.io/fis-site/docs/api/fis-conf.html#roadmapdomain

fis 中由于资源合并问题,所有路径都是绝对路径,所以这块暂时只能用这种方式来处理了。

flyingzl commented 9 years ago

加上domain只是缓解了一下而已,是否可以在#require输出时,可以有参数配置上应用上下文就好了。