标签:OLE 转换 前端 bsp col console ons code 使用
JQuery 处理 微擎传递过去数据
PS:微擎得到的数据大多数是数组(我们这里处理数组)
实例:
后台:
$shops = json_encode(array([‘id‘ => 12, ‘name‘ => ‘GetcharZp‘], [‘id‘ => 13, ‘name‘ => ‘GetcharMcx‘]));
前台:
var shops = $.parseJSON(‘{$shops}‘); // 注意,这里要用单引号,因为转JSON的字符都是双引号 console.log(shops); for (var i = 0; i < shops.length; ++ i) { console.log(shops[i][‘id‘]); }
标签:OLE 转换 前端 bsp col console ons code 使用
原文地址:https://www.cnblogs.com/GetcharZp/p/11941184.html