例:
プレースホルダーを含む文字列 こんにちは、{name}、あなたの誕生日は {birthday } です。
提供された Json オブジェクト {name: "czonechan"、birthday : "1989-07-02 " }
こんにちは、czonechan、あなたの誕生日は 1989-07-02 に置き換えられます。
実装コード:
Object.prototype .jsonToString=function(str) {
o=this;
return str.replace(/{w*}/g, function (w) {
r = w.substr(1, w.length -2);//削除 {}
return (o[r]===0)?0:(o[r] ? o[r] : "");//o[r] === 0 の目的は、値が 0 の場合に空ではなく 0 を出力することです。
});