摘要:
VUE中想让IOS端接收到方法 或参数 必须写在mounted函数中! 传参 window.webkit.messageHandlers.methodName.postMessage(data); methodName 自定义方法名 data 传参 IOS使用同样的方法名接收 写方法让IOS端调用 阅读全文
摘要:
直接传肯定是不行的 传值 需要现将对象转为JSON字符串 JSON.stringify(sendData) 然后再把字符串作为 URI 组件进行编码 encodeURIComponent( JSON.stringify(sendData) ) 然后正常传值 this.$router.push( "/ 阅读全文