时间:2019-05-07 来源:小程序工厂
我在h5中写的怎么就是跳转不了微信小程序呢,调试也是,真机也无法跳转,需要引入的js也引入了
var ua = window.navigator.userAgent.toLowerCase();
if(ua.match(/MicroMessenger/i) == 'micromessenger'){
//判断是否是微信环境
//微信环境
wx.miniProgram.getEnv(function(res) {
if (res.miniprogram) {
//window.open("jump.html");
//window.location.href='jump.html';
// 微信小程序环境下逻辑
//nav_ti();
//document.getElementById("iframe").remove();
//window.open("jump.html");
wx.miniProgram.navigateTo({url: '/pages/dap/dap'});
}else {
//非微信小程序环境下逻辑
alert("非微信小程序环境");
}
})
}else{
//非微信环境逻辑
alert("非微信环境");
window.open("jump.html");
}
你的直接在HTML中书写,然后在微信小程序中调试就可以跳转么,我按照你的代码来判断是否是微信环境,后再执行微信提供的页面跳转还是不生效,请问您碰到过这种情况么
应该这样是可以的
我在看看,谢啦