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