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

将驼峰和下划线数据互转

时间:2019-01-27 21:31:05      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:ret   let   letter   object   json   case   对象   线数据   key值   

// 字符串的下划线格式转驼峰格式,eg:hello_world => helloWorld
function underline2Hump(word) {
    return word.replace(/_(\w)/g, function (all, letter) {
        return letter.toUpperCase()
    })
}

// 字符串的驼峰格式转下划线格式,eg:helloWorld => hello_world
function hump2Underline(word) {
    return word.replace(/([A-Z])/g, ‘_$1‘).toLowerCase()
}

// JSON对象的key值转换为驼峰式
function toHump(obj) {
    if (obj instanceof Array) {
        obj.forEach(function (v, i) {
            toHump(v)
        })
    } else if (obj instanceof Object) {
        Object.keys(obj).forEach(function (key) {
            var newKey = underline2Hump(key)
            if (newKey !== key) {
                obj[newKey] = obj[key]
                delete obj[key]
            }
            toHump(obj[newKey])
        })
    }
    return obj;
}

// 对象的key值转换为下划线格式
function toUnderline(obj) {
    if (obj instanceof Array) {
        obj.forEach(function (v, i) {
            toUnderline(v)
        })
    } else if (obj instanceof Object) {
        Object.keys(obj).forEach(function (key) {
            var newKey = hump2Underline(key)
            if (newKey !== key) {
                obj[newKey] = obj[key]
                delete obj[key]
            }
            toUnderline(obj[newKey])
        })
    }
    return obj;
}

export {
    toUnderline,
    toHump
}

 

将驼峰和下划线数据互转

标签:ret   let   letter   object   json   case   对象   线数据   key值   

原文地址:https://www.cnblogs.com/unreal-feather/p/10327522.html

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