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?

link|improve this question

feedback

2 Answers

up vote 10 down vote accepted

According to the webpage you linked to:

If ERB-style delimiters aren't your cup of tea, you can change Underscore's template settings >to use different symbols to set off interpolated code.

It suggests you change the interpolate and evaluate regexes. This means you can change the <%= %> usage to something that doesn't conflict with JSP.

link|improve this answer
1  
Oh jeez, I guess that I had better RTFM! Now don't I feel stupid. ;-) Thanks for the quick response... problem solved. – erturne Apr 24 '11 at 17:06
feedback

Add the following interpolate and evaluate settings in your jsp page

_.templateSettings = {
    interpolate: /\<\@\=(.+?)\@\>/gim,
    evaluate: /\<\@(.+?)\@\>/gim
};

then you can write your qualify underscore variables,if and for statements with <@ @> instead of <% %> and will not conflict with jsp

link|improve this answer
This question was already answered! – erturne Dec 12 '11 at 1:07
2  
yes it was answered, but this is for those coders (like me) who would rather have a copy-paste solution :) – coderman Dec 15 '11 at 8:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.