Home  >  Article  >  WeChat Applet  >  How to automatically jump to the page in the mini program

How to automatically jump to the page in the mini program

青灯夜游
青灯夜游forward
2021-05-13 11:14:075008browse

This article will introduce to you how to automatically jump to the page in the WeChat applet. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to everyone.

How to automatically jump to the page in the mini program

WeChat applet's automatic jump page:

The program that defines the desktop in the page.wxml file:

050e2adc6de973d5d8d682f9c1b9f656
1c7e93f6f24924680d559771ae6e510ff8e950ebc6c1ea27f76cf997b9216fe6
ffff89ca6bf3cfa196013784bbead6a0

In the current directory Add automatic jump to the page in js

Page({
//监听页面显示
onShow: function () {
    //自动跳转到login
    setTimeout(function(){
	//页面跳转相当于	
      wx.navigateTo({
        url: '../login/login',
      })
    },3000);
  },
})

Method:

setTimeout(函数,毫秒值)

Related learning recommendations:Small program development tutorial

The above is the detailed content of How to automatically jump to the page in the mini program. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:csdn.net. If there is any infringement, please contact admin@php.cn delete