tl; dr:是否可以制作可重用的模板文字?
我一直在尝试使用模板文字,但我想我只是不明白,现在我感到沮丧。我的意思是,我想我明白了,但“它”不应该是它的工作方式,或者它应该如何得到。它应该变得不同。
我看到的所有示例(甚至标记的模板)都要求在声明时而不是运行时完成“替换”,这对我来说对于模板来说似乎完全没用。也许我疯了,但对我来说,“模板”是一个包含标记的文档,当你使用它时,它会被替换,而不是在你创建它时,否则它只是一个文档(即字符串)。模板与令牌一起存储为令牌,并且在您...评估时评估这些令牌。
每个人都举了一个类似的可怕例子:
var a = 'asd';
return `Worthless ${a}!`
这很好,但如果我已经知道了a
,我会选择return 'Worthless asd'
或return 'Worthless '+a
。重点是什么?严重地。好吧,关键是懒惰;更少的优点,更多的可读性。伟大的。但这不是模板!不是恕我直言。而 MHO 才是最重要的!恕我直言,问题在于模板在声明时被评估,所以,如果你这样做,恕我直言:
var tpl = `My ${expletive} template`;
function go() { return tpl; }
go(); // SPACE-TIME ENDS!
由于expletive
没有声明,它输出类似My undefined template
. 极好的。实际上,至少在 Chrome 中,我什至不能声明模板;expletive
由于未定义,因此会引发错误。我需要的是能够在声明模板后进行替换:
var tpl = `My ${expletive} template`;
function go() { return tpl; }
var expletive = 'great';
go(); // My great template
但是我不明白这是怎么可能的,因为这些并不是真正的模板。即使你说我应该使用标签,不,它们也不起作用:
> explete = function(a,b) { console.log(a); console.log(b); }
< function (a,b) { console.log(a); console.log(b); }
> var tpl = explete`My ${expletive} template`
< VM2323:2 Uncaught ReferenceError: expletive is not defined...
这一切都让我相信模板文字的名字非常糟糕,应该被称为它们的真正含义:heredocs。我想“字面意思”部分应该告诉我(如,不可变)?
我错过了什么吗?有没有(好的)方法来制作可重用的模板文字?
我给你,可重用的模板文字:
> function out(t) { console.log(eval(t)); }
var template = `\`This is
my \${expletive} reusable
template!\``;
out(template);
var expletive = 'curious';
out(template);
var expletive = 'AMAZING';
out(template);
< This is
my undefined reusable
template!
This is
my curious reusable
template!
This is
my AMAZING reusable
template!
这是一个天真的“助手”功能......
function t(t) { return '`'+t.replace('{','${')+'`'; }
var template = t(`This is
my {expletive} reusable
template!`);
...使其“更好”。
我倾向于称它们为模板肠道,因为它们产生曲折感觉的区域。