JSP中使用 jquery.tmpl.js或者使用Juicer.js模板引擎问题

《%--


由于jsp中的EL表达式语法和jquery.tmpl十分类似,,所以单纯的使用${name},

,数据是渲染不上tmpl的. SO.. 要加上转义:

  • ${'${'}amount}
  • 或者 \${amount} (推荐)
  • ${'${'}borrowId}
  • 或者 \${borrowId}


    --%》

  • ${'${'}amount}
  • 或者 \${amount} (推荐)
  • ${'${'}borrowId}
  • 或者 \${borrowId}
  • ${'${'}amount}
  • 或者 \${amount} (推荐)
  • ${'${'}borrowId}
  • 或者 \${borrowId}

    你可能感兴趣的:(JSP中使用 jquery.tmpl.js或者使用Juicer.js模板引擎问题)