我知道在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中是否也是可能的。在字符串中使用变量而不使用连接-它看起来更简洁和优雅。
当前回答
简单的使用方法:
var util = require('util');
var value = 15;
var s = util.format("The variable value is: %s", value)
其他回答
你可以这么做,但它不是一般的
'I pity the $fool'.replace('$fool', 'fool')
如果确实需要,您可以轻松地编写一个函数来智能地执行此操作
也许
wrt=(s, arr=[])=>{
arr.map((v,i)=>{s = s.replace(/\?/,v);});
return s;
};
a='first var';
b='secondvar';
tr=wrt('<tr><td>?<td></td>?</td><tr>',[a,b]);
console.log(tr);
//or use tr in html(tr), append(tr) so on and so forth
// Use ? with care in s
完整且随时可用的回答<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}`;
Var hello = "foo";
var my_string ="I pity the";
console.log (my_string,你好)
如果你想为微模板做插值,我喜欢用Mustache.js。