我知道在PHP中我们可以这样做:
$hello = "foo";
$my_string = "I pity the $hello";
输出:"I pity the foo"
我想知道同样的事情在JavaScript中是否也是可能的。在字符串中使用变量而不使用连接-它看起来更简洁和优雅。
我知道在PHP中我们可以这样做:
$hello = "foo";
$my_string = "I pity the $hello";
输出:"I pity the foo"
我想知道同样的事情在JavaScript中是否也是可能的。在字符串中使用变量而不使用连接-它看起来更简洁和优雅。
当前回答
你可以这么做,但它不是一般的
'I pity the $fool'.replace('$fool', 'fool')
如果确实需要,您可以轻松地编写一个函数来智能地执行此操作
其他回答
完整且随时可用的回答<ES6:
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);
}
然后使用as:
"My firstname is ${first}".create({first:'Neo'});
如果你在>ES6上,那么你也可以这样做:
let first = 'Neo';
`My firstname is ${first}`;
在Firefox 34 / Chrome 41 / Safari 9 / Microsoft Edge之前,不,这在javascript中是不可能的。你将不得不求助于:
var hello = "foo";
var my_string = "I pity the " + hello;
2020年和平语录:
Console.WriteLine("I {0} JavaScript!", ">:D<");
console.log(`I ${'>:D<'} C#`)
我会使用反撇号' '。
let name1 = 'Geoffrey';
let msg1 = `Hello ${name1}`;
console.log(msg1); // 'Hello Geoffrey'
但如果在创建msg1时不知道name1。
例如,如果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}。
你可以利用模板字面量并使用以下语法:
`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.