前言
在使用生成二维码的wxacode.getUnlimited时候,传入scene中,参数不支持中文和特俗字符。如果我们需要传入一个对象,却是不行的,这很尴尬 如:{u:abc,w:123}
编码与解码
var str='{u:abc,w:123}'
str= encodeURIComponent(str)
console.log('encodeURIComponent',str);
str=decodeURIComponent(str);
console.log('encodeURIComponent',str)
效果
还有其它方式编码与解码,这里使用encodeURIComponent
大家可以去测试其它呢
综合应用
var json= {
u:'abc',
p:'123'
}
var str=JSON.stringify(json);
str= encodeURIComponent(str)
console.log('encodeURIComponent',str);
str=decodeURIComponent(str);
console.log('encodeURIComponent',str)
var data= JSON.parse(str);
console.log(data.u)
结果
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/107083.html