Underscore.js templates use <%= %> for variable interpolation. Unfortunately that is also interpreted in a JSP (or GSP). Is there a way to use Underscore.js templates within JSPs?
|
According to the webpage you linked to:
It suggests you change the |
|||||
|
|
Add the following interpolate and evaluate settings in your jsp page
then you can write your qualify underscore variables,if and for statements with |
|||||||||||
|
|
@coderman's example was helpful, but, unfortunately, it doesn't work if you want to use newlines in your templates. For example:
The problem is that the regex for So, the solution that worked for me is:
|
|||||
|