I'm using magnolia and I have this variable:

${def.parameters.subTemplate}

I want to set the variable subPath, I'm doing the following below

<% String subPath= ${def.parameters.subTemplate};  %>

but it doesn't work

有帮助吗?

解决方案

<c:set var="subPath" value="${def.perameters.subTemplate" />

and then

${subPath}
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top