php服务器端向前台js客户端传递特征字符处理

问题描述:

 php查询到的数据集,如何转化并传递到js前端

问题处理:

1.php服务端处理

  假设$unitytops为待处理的有序映射数组array(),先将数组转json格式的数据json_encode(),再将得到的结果进行URL字符串编码urlencode()

       $view->assign(‘unitytops‘,urlencode(json_encode($unitytops)));

2.js客户端处理

      接收php后端传过来的字符串类型的值,进行URL字符串解码decodeURIComponent(),最后将值转为数组eval()

      var tops=‘{{$unitytops}}‘;

 var arrs=eval(decodeURIComponent(tops));

  

php服务器端向前台js客户端传递特征字符处理

上一篇:git restore 和 git restore --staged的区别


下一篇:Part1JSON解析