码迷,mamicode.com
首页 > 其他好文 > 详细

前段 format方法

时间:2017-08-04 20:38:48      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:str   orm   参数   div   func   获取   replace   格式   ring   

a.为字符串创建format方法,用于字符串格式化 

String.prototype.format=function (arg) {
    //console.log(this,arg); //this,当前调用方法的字符串,arg为Format方法传入的参数
    //return ‘666‘; //return,格式化之后获取的新内容,return啥就替换为啥
    var temp = this.replace(/\{(\w+)\}/g,function (k,kk) {
        // k相当于{(\w+)},kk相当于(\w+)要替换的东西,arg一般是一个字典
        return arg[kk];
    });
    return temp;
};
 
#调用
a = {nid}
b = {"nid":"123"}
a.format(b)

前段 format方法

标签:str   orm   参数   div   func   获取   replace   格式   ring   

原文地址:http://www.cnblogs.com/niejinmei/p/7286844.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!