Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
<#assign x=${size}>
在上面的代码中的 ftl 文件中,x 没有给出来自 java fikle 的 size 模板的值,我怎样才能让 size 的值等于我的变量 x?
你不需要在${}那里使用。
${}
就写吧<#assign x = size>。
<#assign x = size>