标签:style 进入 数据解析 mount eth 函数 webview view 定位
背景:由于项目中使用到Android WebView加载H5网页,涉及到进入获取定位的操作、这里就涉及到跟Android之间传值、故以记录!!!。
window.android.方法名 // 方法名后加()
methods: { sendLocation(locationData) { // 将Android传递过来的数据解析 var data = JSON.parse(locationData); setStore(‘lat‘, data.latitude); setStore(‘lng‘, data.longitude); } }
mounted() { const that = this; window.sendLocation = that.sendLocation; // 挂载到window中 }
标签:style 进入 数据解析 mount eth 函数 webview view 定位
原文地址:https://www.cnblogs.com/hanlongZ/p/12808696.html