我有一个不寻常的情况,客户希望在从 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}}
上面代码的输出应该是这样的
Lorem adcs 爱尔兰
在欧洲以 iuhmdsf 销售