1.window.location.href = 'https://' + "baidu.com"
想用这个做跳转但是报错 Cannot read property 'location' of undefined
2.还查到了另一种写法
wx.invoke('openDefaultBrowser', {
'url': 'https://www.baidu.com/'
}, function (res) {
console.log("打开浏览器~~~res" + res)
if (res.err_msg == "openDefaultBrowser:ok") {
alert('跳转成功!')
}
});
但是这个写法在运行的时候, wx.invoke is not a function又在报这个错
import "http://res.wx.qq.com/open/js/jweixin-1.2.0.js"说是invoke的引入方法,但是引入之后也是报错undefined