如何在JavaScript中插入字符串中的变量,没有连接?

我知道在PHP中我们可以这样做:

$hello = "foo";
$my_string = "I pity the $hello";

输出:# EYZ0

我想知道同样的事情在JavaScript中是否也是可能的。在字符串中使用变量而不使用连接-它看起来更简洁和优雅。

1063423 次浏览

之前 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尽管你可以尝试JavaScript的sprintf来达到一半:

var hello = "foo";
var my_string = sprintf("I pity the %s", hello);

如果你试图为微模板做插值,我喜欢用Mustache.js

你可以这么做,但它不是一般的

'I pity the $fool'.replace('$fool', 'fool')

如果确实需要,您可以轻松地编写一个函数来智能地执行此操作

你可以利用模板文字并使用以下语法:

`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>
`;

< a href = " http://kangax.github。io/compat-table/es6/#test-template_literals" rel="noreferrer">浏览器支持:

由于旧的浏览器(主要是Internet Explorer)不支持这种语法,您可能需要使用巴别塔/Webpack将代码转译到ES5中,以确保它可以在任何地方运行。


# EYZ0

从IE8+开始,你可以在console.log中使用基本的字符串格式:

console.log('%s is %d.', 'Fifteen', 15);
// Fifteen is 15.

如果你喜欢写CoffeeScript,你可以这样做:

hello = "foo"
my_string = "I pity the #{hello}"

CoffeeScript实际上是javascript,但是语法更好。

CoffeeScript的概述请查看初学者的指南

2022年更新:使用ES6模板文字特性即可。这是# EYZ2。如果你的目标浏览器还是IE11或更低的版本。我很同情你。以下是我5年前提出的解决方案,对你仍然有效。另外,如果你想要一份不涉及迎合旧浏览器的工作,请给我发邮件👍。

你可以使用这个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"
}
);

# EYZ1: # EYZ0

使用函数作为String.replace()函数的参数是ECMAScript v3规范的一部分。有关详细信息,请参阅这个SO答案

完成并准备使用& lt; 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}`;

我写了这个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"

这里没有看到任何外部库,但Lodash有_.template()

https://lodash.com/docs/4.17.10#template

如果你已经在使用Lodash库,它值得一试,如果你没有使用Lodash,你可以从npm# EYZ0中选择方法,这样你就可以减少开销。

最简单的形式——

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.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"

我会使用反撇号' '。

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'

它将用EYZ0的值替换${name2}

# EYZ0

var my_string ="I pity the";

console.log (my_string,你好)

创建一个类似于Java的String.format()的方法

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'

2020年和平语录:

Console.WriteLine("I {0} JavaScript!", ">:D<");


console.log(`I ${'>:D<'} C#`)

简单的使用方法:

var util = require('util');


var value = 15;
var s = util.format("The variable value is: %s", value)