微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

json对象及数组键值的深度大小写转换问题详解

前言

最近在做一个项目,发现后端返回的数据键值全部都是大写的,有时候前端用起来很不方便,所以写了一个深度转换的小工具,分享给大家,也就不用重复造轮子了,不喜勿喷,下面话不多说了,来一起看看详细的介绍吧。

start

rush:bash;"> npm i deep-lu-trans --save

json example

t.objKeysToLower(obj).then((res) => {
console.log(JSON.stringify(res));

});
t.objKeysToLower(obj).then((res) => {
console.log(JSON.stringify(res));
/
{"as_dd_s":123213,"and_saj_jdkjsakd":{"djk_asj":{"sa_dsa_dsa":123123,"asda_sdh_kas":{"asd_sad":[{"asd_sad_sa":123123,"iii_asda":[1,{"asd_sad":123}]}]}}},"kio":[{"op":1,"oop":2},{"ol":1,"op":2}]}
/
t.objKeystoupper(res).then((_s) => {
console.log(JSON.stringify(_s));
/
{"AS_DD_S":123213,"AND_SAJ_JDKJSAKD":{"DJK_ASJ":{"SA_DSA_DSA":123123,"ASDA_SDH_KAS":{"ASD_SAD":[{"ASD_SAD_SA":123123,"III_ASDA":[1,{"ASD_SAD":123}]}]}}},"KIO":[{"OP":1,"OOP":2},{"OL":1,"OP":2}]}
/
});
});

array example

const arr = [{
A_B: 1,B_C: 2
},3,4,'abc',[{
A_B: 1,B_C: {
C_D: [0,{
CK: 1,KL: 2
}]
}
}]]

t.arrKeysToLower(arr).then((res) => {
console.log(JSON.stringify(res));
/
[{"a_b":1,"b_c":2},"abc",[{"a_b":1,"b_c":{"c_d":[0,{"ck":1,"kl":2}]}}]]
/
t.arrKeystoupper(res).then((_s) => {
console.log(JSON.stringify(_s));
[{"A_B":1,"B_C":2},[{"A_B":1,"B_C":{"C_D":[0,{"CK":1,"KL":2}]}}]]
});
})

git地址:

nofollow" target="_blank" href="https://github.com/burning0xb/deep-lu-trans">https://github.com/burning0xb/deep-lu-trans

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对编程之家的支持

原文地址:https://www.jb51.cc/js/32953.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐