Answers:
您可以利用模板文字并使用以下语法:
`String text ${expression}`
模板文字用反引号(``)(重音)括起来,而不是双引号或单引号。
ES2015(ES6)中已引入此功能。
例
var a = 5;
var b = 10;
console.log(`Fifteen is ${a + b}.`);
// "Fifteen is 15.
那有多干净?
奖金:
它还允许在JavaScript中使用多行字符串而不进行转义,这对于模板非常有用:
return `
<div class="${foo}">
...
</div>
`;
由于较旧的浏览器(主要是Internet Explorer)不支持此语法,因此您可能希望使用Babel / Webpack将代码转换为ES5,以确保其可在任何地方运行。
边注:
从IE8 +开始,您可以在其中使用基本的字符串格式console.log
:
console.log('%s is %d.', 'Fifteen', 15);
// Fifteen is 15.
Fifteen is ${a + b}.
); 不会动态更改。它始终显示15是
在 Firefox 34 / Chrome 41 / Safari 9 / Microsoft Edge之前,不是,这在javascript中是不可能的。您将不得不诉诸:
var hello = "foo";
var my_string = "I pity the " + hello;
在 Firefox 34 / Chrome 41 / Safari 9 / Microsoft Edge之前,没有。尽管您可以尝试使用sprintf for JavaScript来达到目标:
var hello = "foo";
var my_string = sprintf("I pity the %s", hello);
好吧,你可以这样做,但这不是一般
'I pity the $fool'.replace('$fool', 'fool')
如果确实需要,您可以轻松编写一个可以智能地执行此操作的函数
完整答案,随时可以使用:
var Strings = {
create : (function() {
var regexp = /{([^{]+)}/g;
return function(str, o) {
return str.replace(regexp, function(ignore, key){
return (key = o[key]) == null ? '' : key;
});
}
})()
};
称为
Strings.create("My firstname is {first}, my last name is {last}", {first:'Neo', last:'Andersson'});
要将其附加到String.prototype:
String.prototype.create = function(o) {
return Strings.create(this, o);
}
然后用作:
"My firstname is ${first}".create({first:'Neo'});
您可以使用此javascript函数进行这种模板化。无需包括整个库。
function createStringFromTemplate(template, variables) {
return template.replace(new RegExp("\{([^\{]+)\}", "g"), function(_unused, varName){
return variables[varName];
});
}
createStringFromTemplate(
"I would like to receive email updates from {list_name} {var1} {var2} {var3}.",
{
list_name : "this store",
var1 : "FOO",
var2 : "BAR",
var3 : "BAZ"
}
);
输出:"I would like to receive email updates from this store FOO BAR BAZ."
使用函数作为String.replace()函数的参数是ECMAScript v3规范的一部分。请参阅此SO答案以获取更多详细信息。
如果您想对微模板进行插值,则为此我喜欢Mustache.js。
我写了这个npm包stringinject https://www.npmjs.com/package/stringinject,它允许您执行以下操作
var string = stringInject("this is a {0} string for {1}", ["test", "stringInject"]);
它将用数组项替换{0}和{1}并返回以下字符串
"this is a test string for stringInject"
或者您可以将占位符替换为对象键和值,如下所示:
var str = stringInject("My username is {username} on {platform}", { username: "tjcafferkey", platform: "GitHub" });
"My username is tjcafferkey on Github"
我会使用反勾号``。
let name1 = 'Geoffrey';
let msg1 = `Hello ${name1}`;
console.log(msg1); // 'Hello Geoffrey'
但是如果您不知道name1
何时创建msg1
。
例如 msg1
来自API。
您可以使用 :
let name2 = 'Geoffrey';
let msg2 = 'Hello ${name2}';
console.log(msg2); // 'Hello ${name2}'
const regexp = /\${([^{]+)}/g;
let result = msg2.replace(regexp, function(ignore, key){
return eval(key);
});
console.log(result); // 'Hello Geoffrey'
它将替换${name2}
为他的价值。
没有看到这里提到的任何外部库,但是Lodash有 _.template()
,
https://lodash.com/docs/4.17.10#template
如果您已经在使用该库,那么值得一试;如果您没有使用Lodash,则可以随时从npm中挑选方法 npm install lodash.template
以减少开销。
最简单的形式-
var compiled = _.template('hello <%= user %>!');
compiled({ 'user': 'fred' });
// => 'hello fred!'
还有很多配置选项-
_.templateSettings.interpolate = /{{([\s\S]+?)}}/g;
var compiled = _.template('hello {{ user }}!');
compiled({ 'user': 'mustache' });
// => 'hello mustache!'
我发现自定义分隔符最有趣。
创建类似于String.format()
Java 的方法
StringJoin=(s, r=[])=>{
r.map((v,i)=>{
s = s.replace('%'+(i+1),v)
})
return s
}
采用
console.log(StringJoin('I can %1 a %2',['create','method'])) //output: 'I can create a method'
String.prototype.interpole = function () {
var c=0, txt=this;
while (txt.search(/{var}/g) > 0){
txt = txt.replace(/{var}/, arguments[c]);
c++;
}
return txt;
}
Uso:
var hello = "foo";
var my_string = "I pity the {var}".interpole(hello);
//resultado "I pity the foo"
var hello = "foo";
var my_string ="I pity the";
console.log(my_string,你好)
"${foo}"
实际上是$ {foo}`${foo}`
是您真正想要的