我需要在段落中反映日期。有没有办法做玉?
var locals = {
date: '23-4-2016',
recipient: {
name: "John Doe",
},
paragraph: 'some text #{locals.date} some text',
borrower: "John Doe"
};
p=paragraph
一些文字#{locals.date}一些文字
一些文字23-4-2016一些文字
答案 0 :(得分:1)
用户其他变量some text
第一个和some text
最后,如下所示:
-var date = '23-04-2016';
-var firstText = 'some text first ';
-var lastText = ' some text last';
然后使用+
运算符声明变量使用变量:
-var paragraph = firstText + date + lastText;
然后在p= paragraph
的视图中打印,结果为:
some text first 23-04-2016 some text last
我使用的是玉模板,但我认为帕格是一样的。