在写Javascript代码的时候,感觉很怀念Ruby的#{}方法,所以我用JS来实现。但是这段代码并不干净漂亮。我想让这种方法安全,但我做不到。
你知道这段代码是安全的还是美观的?提前致谢。
String.prototype.to_s = function(){
var str = this.toString();
// convert function is bad because it use eval...
var convert = function(s){
return eval(s);
};
// It's slower because call ReGexp method too many times.
while(/#{(\w+)}/.test(str)){
var matchStr =RegExp.$1;
var str = str.replace(/#{(\w+)}/,convert(matchStr));
}
return str;
};
var name = "nobi";
var age = 23;
var body = "I'm #{name} and I am #{age} years old".to_s();
// I'm nobi and I am 23 years old.
console.log(body);