收藏
回答

小程序第三方 设置ext下的tabBar

框架类型 问题类型 操作时间 AppID
小程序 Bug 2018-12-27 wxe57fb196f1da2286

第三方平台通过 https://api.weixin.qq.com/wxa/commit?access_token=api 设置配置项


默认设置tabBar和app.json 中一样

api 提示  "iconPath": "images/index.png" file not found

但是在web开发者工具中使用ext.json则有效果图显示


回答关注问题邀请回答
收藏

2 个回答

  • 薯饼啦🐕
    薯饼啦🐕
    2022-03-07

    楼主是怎么实现对应不同品牌来控制不同的底部tabBar的显示的呢,我总不能把所有的图片都加到app.json里面吧?

    2022-03-07
    有用
    回复
  • Ltt
    Ltt
    2018-12-27

    麻烦检查一下你图片路径是否正确。

    2018-12-27
    有用
    回复 3
    • 2018-12-27

      这个路径放到 app.json 可以使用  放到ext.json也可以使用的

      2018-12-27
      回复
    • Ltt
      Ltt
      2018-12-27回复

      提供一下目录结构截图,和哪里使用成功了这张图片?

      2018-12-27
      回复
    • 2018-12-27回复Ltt




      我的ext_json

      {

      "ext": {

      "url": "",

      "srId": 1

      },

      "extAppid": "wxe57fb196f1da2286",

      "tabBar": {

      "backgroundColor": "#ffffff",

      "selectedColor": "#ff384b",

      "borderStyle": "#fff",

      "list": [{

      "selectedIconPath": "images/index_active.png",

      "text": "首页1",

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

      "iconPath": "images/index.png"

      }, {

      "selectedIconPath": "images/list_active.png",

      "text": "分类2",

      "pagePath": "pages/category/category",

      "iconPath": "images/list.png"

      }, {

      "selectedIconPath": "images/shopping_active.png",

      "text": "购物车3",

      "pagePath": "pages/shopping/shopping",

      "iconPath": "images/shopping.png"

      }, {

      "selectedIconPath": "images/user_active.png",

      "text": "会员中心4",

      "pagePath": "pages/user/user",

      "iconPath": "images/user.png"

      }]

      },

      "window": {

      "navigationBarTitleText": "火荐侠"

      },

      "extEnable": true

      }


      api调用后显示

      {"errcode":85045,"errmsg":"error: iconPath=images/index.png, file not found"}

      2018-12-27
      回复
登录 后发表内容