Ethan
Ethan
该模块在ios上可用 在android上无效这是为什么。 call、image等功能在android上都能调用 ``` 11-21 08:52:10.315 29988-30048/com.alibaba.weex D/weex: [WXBridgeManager] callNativeModule >>>> instanceId:1, module:nat/geolocation, method:get, arguments:["2"] 11-21 08:52:10.315 29988-29988/com.alibaba.weex E/weex: [WXModalUIModule] alert param parse error java.lang.NullPointerException: Attempt to invoke virtual method...
这三个功能还是蛮重要的,现在线上其他人写的插件貌似都存在一些问题,现在weex-amap那个插件在引入后在weex打包时会报错,在android无法运行,ios可以,weex-chart插件不知道什么问题 貌似版本过低导致无法调用,期待官方能出这三块插件
插件里面没有加入根据经纬度获取详细地址的方法,这个应该是蛮重要的吧 ? 现在还有在维护吗? 你这个插件怎么开发的呢,不太懂插件的开发方法 ios和Android是直接打包过去更新bundle里面的js 还是要自己写Android和ios对应的方法
如题 我在引入weex-amap时在app上 地图可以正常显示,但是在使用定位等方法时 提示xxx is not a function,引入方式 ```javascript const Amap = weex.requireModule('@weex-module/amap'); setUserLocation() { const self = this; Amap.getUserLocation(this.$refs.map2017, function (data) { if (data.result == 'success') { self.pos =...
``` import App from './index.vue'; import GCanvas from 'weex-gcanvas' console.log(Vue.component) Vue.component('gcanvas', GCanvas) new Vue( Vue.util.extend({ el: '#root' }, App) ) ``` ``` vue.runtime.js:565 TypeError: Cannot set property 'componentId' of undefined...