$hello = "foo";
$my_string = "I pity the $hello";
输出:
"I pity the foo"
我想知道在JavaScript中是否可以实现同样的功能也一样在字符串内部使用变量而无需使用串联-编写起来看起来更加简洁优雅。
#1 楼
您可以利用模板文字并使用以下语法:`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.
#2 楼
在Firefox 34 / Chrome 41 / Safari 9 / Microsoft Edge之前,不是,这在javascript中是不可能的。您将不得不诉诸:var hello = "foo";
var my_string = "I pity the " + hello;
评论
带有模板字符串的javascript(ES6)很快将成为可能,请参阅下面的详细答案。
–bformet
15年1月22日在12:52
如果您想编写CoffeeScript,这实际上是具有更好语法的javascript,这是可能的。
–bformet
15年2月13日在10:37
对于旧版浏览器大喊大叫:)
–乳头痕
19年5月5日在13:24
#3 楼
在Firefox 34 / Chrome 41 / Safari 9 / Microsoft Edge之前,没有。尽管您可以尝试使用sprintf for JavaScript来达到目标:var hello = "foo";
var my_string = sprintf("I pity the %s", hello);
评论
谢谢。如果您使用的是dojo,则sprintf可作为模块使用:bill.dojotoolkit.org/api/1.9/dojox/string/sprintf
–user64141
14年7月14日在16:23
#4 楼
好吧,您可以执行此操作,但这不是esp general'I pity the $fool'.replace('$fool', 'fool')
如果您确实需要
,则可以轻松编写一个智能地执行此功能的函数。
评论
实际上,还不错。
– B先生
18年6月14日在1:40
当您需要将模板字符串存储在数据库中并按需对其进行处理时,此答案很好
–迪马·埃斯卡罗达(Dima Escaroda)
18年7月16日在10:32
好一个,效果很好。非常简单,但是没想到。
–山姆
19/12/17在6:34
#5 楼
完整的答案,随时可以使用: 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。原型:
String.prototype.create = function(o) {
return Strings.create(this, o);
}
然后用作:
"My firstname is ${first}".create({first:'Neo'});
#6 楼
您可以使用此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答案。
评论
这样有效吗?
–mmm
17年7月5日在17:00
效率将在很大程度上取决于用户的浏览器,因为此解决方案将匹配正则表达式和对浏览器的本机函数进行字符串替换的工作“繁重”。无论如何,由于无论如何这都是在浏览器端发生的,因此效率并不是什么大问题。如果要使用服务器端模板(用于Node.JS等),则应使用@bformet描述的ES6模板文字解决方案,因为它可能更有效。
–埃里克·海斯特兰德(Eric Seastrand)
17年7月5日在18:49
#7 楼
如果您想编写CoffeeScript,可以执行以下操作:hello = "foo"
my_string = "I pity the #{hello}"
CoffeeScript实际上是javascript,但是语法更好。
有关概述CoffeeScript的作者,请查阅此初学者指南。
#8 楼
我会使用反勾号``。 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}
。#9 楼
如果您想对微模板进行插值,那么我就喜欢Mustust.js。#10 楼
我写了这个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"
#11 楼
在这里看不到任何外部库,但是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!'
我发现自定义分隔符最有趣。 />
#12 楼
只需使用:var util = require('util');
var value = 15;
var s = util.format("The variable value is: %s", value)
#13 楼
创建类似于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'
#14 楼
2020年和平报价:Console.WriteLine("I {0} JavaScript!", ">:D<");
console.log(`I ${'>:D<'} C#`)
#15 楼
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"
#16 楼
var hello = "foo";
var my_string ="I pity the";
console.log(my_string,hello)
评论
那没有回答问题。您可能会同时注销两个字符串,但这并不能为您提供一个包含两个字符串的新字符串,这正是OP所要求的。
–马克斯·沃尔默(Max Vollmer)
19年11月22日在19:40
评论
不要错过这样的事实,即模板字符串用反斜线(`)代替了常规的引号字符。 “ $ {foo}”实际上就是您想要的$ {foo}`$ {foo}`
–Hovis Biddle
2015年6月22日17:17
另外,有许多编译器可以将ES6转换为ES5,以解决兼容性问题!
–尼克
2015年10月6日在10:14
当我更改a或b值时。 console.log(十五是$ {a + b}。);不会动态更改。它总是显示15是15。
–达兰
19年5月9日在5:16
背tick是救生员。
– MHBN
7月1日12:06