freemarker.core.ParseException: Syntax error in template "template1811891664636092142.ftl" in line 62, column 28: You can't use ${...} (an interpolation) here as you are already in FreeMarker-expression-mode. Thus, instead of ${myExpression}, just write myExpression. (${...} is only used where otherwise static text is expected, i.e., outside FreeMarker tags and interpolations, or inside string literals.)
时间: 2024-03-24 13:38:01 浏览: 148
struts-2.5.30所有jar包
这个错误提示是因为你在Freemarker模板中使用了${...}语法,但是这里已经处于Freemarker表达式模式下了。因此,你需要将${...}替换为表达式本身,例如:
原始代码:
```
<#if !field.keyFlag && ${field.propertyType!} == "Date">
```
修改后的代码:
```
<#if !field.keyFlag && field.propertyType! == "Date">
```
这样就可以避免该错误了。需要注意的是,如果你确实需要在Freemarker表达式模式下使用${...}语法,可以使用\${...}转义符进行转义,例如:
```
${'\${'}myExpression${'\}'} // 输出 ${myExpression}
```
但是,这种写法比较繁琐,不建议过多使用。
阅读全文