How to output ${expression} in Freemarker without it being interpreted?

五迷三道 提交于 2019-11-27 19:42:05

This should print ${person.name}:

${r"${person.name}"}
ddekany

For longer sections without FreeMarker markup, use <#noparse>...</#noparse>.

Starting with FreeMarker 2.3.28, configure FreeMarker to use square bracket syntax ([=exp]) instead of brace syntax (${exp}) by setting the interpolation_syntax configuration option to square_bracket.

Note that unlike the tag syntax, the interpolation syntax cannot be specified inside the template. Changing the interpolation syntax requires calling the Java API:

Configuration cfg;
// ...
cfg.setInterpolationSyntax(SQUARE_BRACKET_INTERPOLATION_SYNTAX);

Then FreeMarker will consider ${exp} to be static text.

Do not confuse interpolation syntax with tag syntax, which also can have square_bracket value, but is independent of the interpolation syntax.

When using FreeMarker-based file PreProcessor (FMPP), either configure the setting via config.fmpp or on the command-line, such as:

fmpp --verbose --interpolation-syntax squareBracket ...

This will call the appropriate Java API prior to processing the file.

See also:

Another option is to use #include with parse=false option. That is, put your jQuery Templates into the separate include page and use parse=false so that freemarker doesn't try and parse it.

This would be a good option when the templates are larger and contain double quotes.

If ${ is your only problem, then you could use the alternate syntax in the jQuery Templates plugin like this: {{= person.name}}

Maybe a little cleaner than escaping it.

adarshr

Did you try $$?

I found from the Freemarker manual that ${r"${person.name}"} will print out ${person.name} without attempting to render it.

Perhaps you should also take a look at Freemarker escaping freemarker

I had to spent some time to figure out the following scenarios to escape ${expression} -

  • In Freemarker assignment:

<#assign var = r"${expression}">

  • In html attribute:

<a href="/user/${r"${expression}"}"> Some link </a>

  • In Freemarker concatenation:

<#assign x = "something&"+r"${expression}"/>

In the case when you want to use non-raw strings so that you can escape double quotes, apostrophes, etc, you can do the following:

Imagine that you want to use the string ${Hello}-"My friend's friend" inside of a string. You cannot do that with raw strings. What I have used that works is:

${"\x0024{Hello}-\"My friend's friend\""}

I have not escaped the apostrophe since I used double quotes.

I can confirm that the

${r"${item.id}"}

is the correct way as an example.

So I kinda full example will look like

<span><a href="/user/user-remove/${r"${item.id}"}"> Remove </a></span>

and the output will be :

<span><a href="/user/user-remove/${item.id}"> Remove </a></span>
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!