要将文件(b.html)html导入另一个(a.html),我使用:
a.html:
<html>
....
{{> b}} <!-- 'b' is literally the name of file -->
</html>
但是,在服务器端(春季),如果我将文件名放入变量模型中:
model.put(“文件名”,“ b”)
然后:
a.html:
<html>
...
{{> filename}} <!-- or with {{> {{filename}} }} -->
</html>
它不起作用。在第一种情况下
{{>文件名}}
显然,“文件名”被视为文件名(不存在)。在第二种情况下,它被打印为字符串“ {{filename}}”。
有可能做到吗?