小程序如何使用json文件

小程序如何使用json文件,第1张

【小程序】小程序读取本地json文件

1.在项目中新建data文件夹内新建存放json数据的js文件;

2.在存放json数据的js文件中定义出口(其中出口名称为regionList,数据名为json)

 3.页面引用:

1、let jsonData = require('../../data/region.js')

 2、onload中给数据传入

     _this.setData({

            multiArray: jsonData.regionList[0].multiArray,

            objectMultiArray: jsonData.regionList[0].objectMultiArray

      })

官方链接: https://developers.weixin.qq.com/miniprogram/dev/reference/configuration/app.html

单个页面的page.json会覆盖app.json中对于小程序window的设置,page和debug等不可以在page.json中被设置。

"window": {

    "navigationBarBackgroundColor": "#ffffff", 

    "navigationBarTextStyle": "black", 

     "navigationBarTitleText": "微信接口功能演示", 

     "backgroundColor": "#eeeeee", 

     "backgroundTextStyle": "light" 

 }

(tabBar最多可设置五个,再多就不会显示)

"tabBar": {

    "color": "#444", 设置字体颜色

    "selectedColor": "#219bf3", 设置选中字体颜色

    "backgroundColor": "#e0e0e0", 设置背景颜色

    "borderStyle": "white", 设置tab栏上边框颜色(可选只有white和black)

    "position": "bottom", 设置tab位置(可选只有bottom和top)

    "list": [

      {

      "text": "Index",

      "pagePath": "pages/index/index",

       "iconPath": "image/01.png",  设置tab栏图标

      "selectedIconPath": "image/01-active.png"  被选中时的图标(颜色由图标本身决定

},

      {

        "text": "Demo",

        "pagePath": "pages/demo/demo",

        "iconPath": "image/02.png",

         "selectedIconPath": "image/02-active.png"

}

  ]}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/11211585.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-14
下一篇 2023-05-14

发表评论

登录后才能评论

评论列表(0条)

保存