taro-关于跳转路由

新建一个页面

在这里插入图片描述

知道现在已经有了一个默认的index,现在想做的是跳转到home这个文件

在路径 /src/app.tsx 下我们需要添加一个页面这样就将home,添加进了页面管理

config: Config = {
    pages: [
      'pages/index/index',
      'pages/home/home'
    ],
    window: {
      backgroundTextStyle: 'light',
      navigationBarBackgroundColor: '#fff',
      navigationBarTitleText: 'WeChat',
      navigationBarTextStyle: 'black'
    }
  }

介绍带参路由,不带参的一样

在页面index中写一个点击事件

	

写一个方法

	toHome(){
		// 传入参数 id=2&type=test
		Taro.navigateTo({
		  url: '/pages/page/home/home?id=2&type=test'
		})
	}

这样就调转了,在home的生命周期中即可,获得传来的参数

componentWillMount () { 
    console.log(this.$router.params) // 输出 { id: 2, type: 'test' }
  }

你可能感兴趣的:(taro-关于跳转路由)