app.js onLaunch 添加跳转没有反应
app.js onLaunch 添加跳转没有反应,是不支持吗?
同样的代码放到index页面的index.js onLaunch 就可以跳转了
App({ onLaunch: function () { if(true){ wx.redirectTo({ url:"/pages/login/login", }) } }, onShow: function () { //console.log("App生命周期函数——onShow函数"); }, onHide: function () { //console.log("App生命周期函数——onHide函数"); }, onError: function (msg) { //console.log("App生命周期函数——onError函数"); }, other:function(){ //console.log("全局函数,可以被项目上的其他js文件调用"); }}) |
