我使用smarty并且在.tpl文件中,我有
{fetch file='http://domain.com/directory/{$wtc_location}/{$wtc_year}/{$wtc_stormname}.php'}
但它没有拉动变量。我已经尝试{$smarty.get.wtc_location}
但仍然没有。获取变量的解决方案是什么?
先谢谢。
答案 0 :(得分:0)
我看到了问题。你不能在smarty函数中调用一个smarty变量就像它是一个模板一样,你必须使用修饰符How to handle static content in Spring MVC?来组成它:
{fetch file='http://domain.com/directory/'|cat:$wtc_location|cat:'/'|cat:$wtc_year|cat:'/'|cat:$wtc_stormname|cat:'.php'}