我有一个不寻常的情况,客户端想在从
JSON对象传递给句柄的字符串中放置换行符.我已经尝试过转义字符,但DOM并不意外地呈现.有什么建议么?
"company": "Lorem adscs ireland <br/> marketed as iuhmdsf in Europe"
var products = Data; var theTemplateScript = $("#product-template").html(); var theTemplate = Handlebars.compile (theTemplateScript); $("#marketed-products .products").append (theTemplate(products));
{{#items}} <li><span class="company">{{company}}</li> {{/items}}
洛雷克爱尔兰
在欧洲销售为iuhmdsf
解决方法
使用三角括号,如{{{返回Html}}}),在这种情况下,Handlebars将不会转义该值.
即将成为:
{{#items}} <li><span class="company">{{{company}}}</li> {{/items}}