码迷,mamicode.com
首页 > Web开发 > 详细

JQuery 处理 微擎传递过去数据

时间:2019-11-27 12:12:52      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:OLE   转换   前端   bsp   col   console   ons   code   使用   

JQuery 处理 微擎传递过去数据

 

PS:微擎得到的数据大多数是数组(我们这里处理数组)

  1. 将数组使用 json_encode() 函数处理成 JSON 格式
  2. 前端在 script 中使用 引号 将变量括起来即可得到后台设定的数据
  3. 使用 $.parseJSON() 函数转换成jquery可以处理的对象

 

实例:

后台:

$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‘]);
}

 

JQuery 处理 微擎传递过去数据

标签:OLE   转换   前端   bsp   col   console   ons   code   使用   

原文地址:https://www.cnblogs.com/GetcharZp/p/11941184.html

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