Вопрос

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