Thymeleaf将财产作为参数发送

时间:2015-07-31 13:09:54

标签: thymeleaf

我试图将属性值作为String参数传递给Thymeleaf片段但没有成功: 我的代码是:

<div data-th-replace="views/fragments/myfragmentfile :: fragmentname (${#{checkout.paybutton.text}})"></div>

接收参数的片段如下:

<p data-th-fragment="fragmentname (buttonText)">

在属性文件中:

checkout.paybutton.text=Purchase

如何在作为参数发送之前评估属性?

1 个答案:

答案 0 :(得分:2)

试试这个..

<div data-th-replace="views/fragments/myfragmentfile :: fragmentname (${__#{checkout.paybutton.text}__})"></div>