有官方解答吗?是api的问题吗?不处理这个警告会有什么后果?
小程序告警,但是无法定位问题类型:脚本错误 错误样例: undefined is not an object (evaluating 'a.mapCtx.getCenterLocation');at pages/location/location page regionchange function 以下是相关代码: .js: regionchange:function(e){ var that = this; if(e.type=='end'){ // this.getCenterLocation(); that.mapCtx.getCenterLocation({ success: function (res) { that.setData({ m_latitude: res.latitude, m_longitude: res.longitude }) that.requestData(res.longitude, res.latitude, 0); } }) } }, .wxml <map wx:if="{{show_tab_list==0}}" id="aokeNear" longitude="{{longitude}}" latitude="{{latitude}}" markers="{{markers}}" bindmarkertap="onMarkerClick" scale="15" show-location="true" bindregionchange="regionchange" controls="{{controls}}" bindcontroltap="bindcontrol"> </map> 代码很简单,逻辑也很简单,不知道是什么原因造成的告警。有没有知道的朋友,麻烦帮忙看看,万分感谢~
2018-11-06这个需要小程序提供相应的api功能才行。扫码只是解析二位码,你说的关注公众号是解析后的动作了。 我以前也想过用小程序的扫码功能扫微信二维码,加微信好友,苦于微信小程序未提供该功能的api,只好放弃……
小程序扫码相关问题- 小程序里调用扫码接口,扫描二维码关注公众号。 怎么解决这个问题呢,现在扫码以后,返回了result。微信扫一扫是直接关注公众号的页面,而小程序不提供这个功能。需要怎么解决呢
2018-08-16