1

我正在使用速度。

page.html

...
#set($localDecimal='#,##0.00')
#set($localInteger='#,##0')
#set($localNumber='#,##0')
#set($localCurrency=${currentCurrency}+'#,##0.00')
...
#parse('welcome.html')
...

欢迎.html

$localNumber  

我期待#,##0相反$localNumber,页面似乎没有从[父模板]welcome.html中选择任何变量集page.html

我究竟做错了什么?

4

1 回答 1

2

您可能正在使用#include而不是#parse.

包含不做任何事情,只是插入内容。使用 Parse,它应该可以工作。

请参阅包含解析文档。它还显示了一个示例#parse,与您的情况相同。

于 2013-05-01T11:08:10.750 回答