Thymeleaf 发送 属性 作为参数
Thymeleaf send property as a parameter
我试图将 属性 值作为字符串参数传递给 Thymeleaf 片段,但没有成功:
我的代码是:
<div data-th-replace="views/fragments/myfragmentfile :: fragmentname (${#{checkout.paybutton.text}})"></div>
接收参数的片段如下:
<p data-th-fragment="fragmentname (buttonText)">
在 属性 文件中:
checkout.paybutton.text=Purchase
如何计算作为参数发送前的属性?
试试这个..
<div data-th-replace="views/fragments/myfragmentfile :: fragmentname (${__#{checkout.paybutton.text}__})"></div>
我试图将 属性 值作为字符串参数传递给 Thymeleaf 片段,但没有成功: 我的代码是:
<div data-th-replace="views/fragments/myfragmentfile :: fragmentname (${#{checkout.paybutton.text}})"></div>
接收参数的片段如下:
<p data-th-fragment="fragmentname (buttonText)">
在 属性 文件中:
checkout.paybutton.text=Purchase
如何计算作为参数发送前的属性?
试试这个..
<div data-th-replace="views/fragments/myfragmentfile :: fragmentname (${__#{checkout.paybutton.text}__})"></div>