- 开发工具调试功能wxml不好使?
scrollview下面看不到wxml内容
2020-04-01 - wx.getExtConfig体验版本调试模式好使,非调试模式就获取不到配置信息
if (wx.getExtConfig) { wx.getExtConfig({ success: function (res) { console.log(res.extConfig) console.log(res.extConfig.host) getApp().globalData.API_URL = res.extConfig.host; getApp().globalData.merchantId = res.extConfig.merchantId; getApp().globalData.appid = res.extConfig.appid; getApp().globalData.appSecret = res.extConfig.appSecret; } }) console.log('&&&&&&'+that.globalData.API_URL) } appid:wx27fe3df512cfbb03
2017-11-22 - 体验版本wx.getExtConfig为空
全网发布审核中,提交完小程序代码,体验中wx.getExtConfig为空,请问谁知道是怎么回事,开发工具都是可以的,appid=wxbb500227fb3e13a3 if (wx.getExtConfig) { wx.getExtConfig({ success: function (res) { console.log(res.extConfig) console.log(res.extConfig.attr.host) getApp().globalData.API_URL = res.extConfig.attr.host; getApp().globalData.merchantId = res.extConfig.attr.merchantId; getApp().globalData.appid = res.extConfig.attr.appid; getApp().globalData.appSecret = res.extConfig.attr.appSecret; } }) console.log('&&&&&&'+that.globalData.API_URL) }
2017-11-12