我想将MVEL包含到另一个MVEL文件中,我尝试使用@Include,但它对我无效,
有人能建议我如何在另一个MVEL文件中使用MVEL吗?
这是我的密码
Dear @{FIRST_NAME},
Hello How are you??
@include('./Footer.txt')这里,Footer.txt是另一个包含示例文本的文件
Regards,
Satish 我得到的输出
Dear John
Hello How are you??
@include('../Footer.txt'), 发布于 2014-08-08 07:24:30
嘿,这里有一些修正
应该像@include{'Footer.txt'}一样
https://stackoverflow.com/questions/25197802
复制相似问题