1 Star 0 Fork 347

q602839959 / mall-applet

forked from mallplus / mall-applet 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
utils.js 478 Bytes
一键复制 编辑 原始数据 按行查看 历史
shenzhuan 提交于 2019-03-05 09:35 . 小程序
var utils = {
scene_decode: function (scene) {
var _str = scene + "";
var _str_list = _str.split(",");
var res = {};
for (var i in _str_list) {
var _tmp_str = _str_list[i];
var _tmp_str_list = _tmp_str.split(":");
if (_tmp_str_list.length > 0&&_tmp_str_list[0]) {
res[_tmp_str_list[0]] = _tmp_str_list[1] || null;
}
}
return res;
}
};
module.exports = utils;
微信
1
https://gitee.com/emiaotao/mall-applet.git
git@gitee.com:emiaotao/mall-applet.git
emiaotao
mall-applet
mall-applet
master

搜索帮助