我正在使用EJS进行模板渲染,并且具有以下代码行:
var html = new EJS({
url : 'http://' + host + ':1010/OtherDomain/article-popup.ejs'
}).render({
price : '$20'
});
模板:
<span><%= price %></span>
现在我想更新price
元素的内容。
我从这里阅读了文档https://code.google.com/p/embeddedjavascript/wiki/Templates 但没有得到如何使用EJS更新元素的值。
请指导。 任何小提琴都会很棒
答案 0 :(得分:0)
使用更新方法。
您的密码:
var html = new EJS
({
url : 'http://' + host + ':1010/OtherDomain/article-popup.ejs'
}).render({price : '$20'});
更新用途:
var update = new EJS
({
url : 'http://' + host + ':1010/OtherDomain/article-popup.ejs'
}).update(html, { price: '$30'})