在我的JSP模板中,我有
Here is the title: ${title}
我想传递以下字符串(从数据库提供)作为视图的标题:
${appname} - Is the best....
其中appname是模型属性。在$ {title}中解析$ {appname}的最佳方法是什么? 我正在使用Spring Webmvc。
答案 0 :(得分:0)
尝试这样的事情:
<c:set var="dynamicAttribute" value="${title}"/>
<c:set var="dynamicAttribute2" value="${fn:substringBefore(dynamicAttribute, '- Is')}" />
${requestScope[dynamicAttribute2]}