微信小程序开发之拼接json数组字符串

Posted 强大的程序猿人

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序开发之拼接json数组字符串相关的知识,希望对你有一定的参考价值。

直接上代码   :

var imageitem;
    var imageitemstring=‘‘;
    for(var i=0;i< that.data.fbimages.length;i++)
    {
      imageitem=‘{"fileUrl":"‘+ that.data.fbimages[i] +‘"}‘;
      if(i<that.data.fbimages.length-1)
      {imageitemstring += imageitem + ‘,‘;}
      else{imageitemstring += imageitem}
    }
    var imageList=‘{"imageList":[‘+imageitemstring+‘]}‘;

 

fbimages为fileURL文件路径的数组;最终格式化的数据为:

{"imageList":[{"fileUrl":"http://218.87.254.137:7999/uploads/20170528/48e11aa9-88ef-449e-b617-513c83a09f40.jpg"},{"fileUrl":"http://218.87.254.137:7999/uploads/20170528/4050ceaa-1673-42e8-97ea-56991290ad76.png"},{"fileUrl":"http://218.87.254.137:7999/uploads/20170528/59403872-0f18-43a6-93e4-53a0816bd047.jpg"}]}

 










以上是关于微信小程序开发之拼接json数组字符串的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序的字符串和变量如何拼接

微信小程序开发,导航栏右边的按钮怎么设置

微信小程序开发手册(配置和视图层)

微信小程序开发之小程序微信支付功能源码

微信小程序开发教程目录

微信小程序传递数组