我有一个像这样的目录结构:
Templates/
├── Foo/
│ ├── Foo.st
├── Signature.st
以下是Foo.st
的样子:
<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
</head>
<body>
<div id="body">
<p> Some Text </p>
</div>
$Signature()$
</body>
</html>
这是我的StringTemplate
的Java代码:
STRawGroupDir dir = new STRawGroupDir("Templates", '$', '$');
ST st = dir.getInstanceOf("Foo/Foo");
System.out.println(st.render());
但输出是:
<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
</head>
<body>
<div id="body">
<p> Some Text </p>
</div>
</body>
</html>
如何让Foo
模板正确引用签名模板?
如果我将Signature.st
放在Foo
目录中,那么上面的代码就可以了,但我不能这样做,因为我会有很多模板可以引用Signature
模板。
答案 0 :(得分:2)
尝试:
...
$/Signature()$
...
模板调用相对于调用模板已解析。使用前缀/
开始模板调用将使模板调用为绝对值 - 这正是您所期望的。
答案 1 :(得分:0)
我想出了一个非常简单的方法。我现在有以下目录结构:
Templates/
├── Foo/
│ ├── Foo.st
├── Main.st
├── Signature.st
这是我的Main.st
$ templates : { template |
$(template)()$
}$
$Signature()$
这是我的java代码:
STRawGroupDir dir = new STRawGroupDir("Templates", '$', '$');
ST st = dir.getInstanceOf("Main");
st.add("templates", Arrays.asList("/Foo/Foo.st"));
st.render();
现在我可以传入任意数量的模板,这非常有效。