例如:
含有占位符的字符串hello,{name},your birthday is {birthday };
提供的Json對象{name: "czonechan", birthday : "1989-07-02" } ;
替換後為 hello,czonechan,your birthday is 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而不是空。
});
};