search
HomeWeb Front-enduni-appHow to achieve seamless routing switching between pages in uniapp
How to achieve seamless routing switching between pages in uniappDec 17, 2023 pm 01:43 PM
uniapp implementationSeamless switchingRoute switching

How to achieve seamless routing switching between pages in uniapp

How to implement seamless routing switching between pages in uniapp

In uniapp, seamless routing switching between pages is a very common requirement. Through reasonable routing design, we can achieve smooth page switching effects and improve user experience. This article will introduce how to achieve seamless routing switching between pages in uniapp, and provide specific code examples.

1. Basic use of routing

In uniapp, routing jumps between pages can be achieved through the uni.navigateTo and uni.switchTab methods.

  1. Use uni.navigateTo to route between pages

    uni.navigateTo({
    url: 'pages/page1/page1'
    } )

Through the above code, you can navigate to the page1 page under the pages folder. When using uni.navigateTo, the page will remain in the stack and you can return to the previous page through uni.navigateBack.

  1. Use uni.switchTab to switch between pages

    uni.switchTab({
    url: 'pages/page1/page1'
    })

The above code can be used to switch to the page1 page in the bottom navigation bar. After using uni.switchTab, the page stack will be cleared, leaving only the last page.

2. Configuration of page transition effect

  1. Use transition component to achieve page transition effect

When switching pages, we can use uni-app The transition component is provided to achieve the transition effect between pages. The transition component supports a variety of transition effects, such as fade, slide-up, slide-down, etc.

In App.vue:

<template>
  <view class="app">
    <transition name="fade">
      <router-view></router-view>
    </transition>
  </view>
</template>

<style>
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.5s;
}
.fade-enter,
.fade-leave-to {
  opacity: 0;
}
</style>
  1. Customized page transition effect

In uniapp, we can set it in onLoad or onShow of the page transition attribute to achieve customized transition effects between pages.

In page1.vue:

<template>
  <view>page1</view>
</template>

<script>
export default {
  onLoad() {
    this.$options.transition = 'slide-left'
  }
}
</script>

<style>
.slide-left-enter-active,
.slide-left-leave-active {
  transition: transform 0.5s;
}
.slide-left-enter,
.slide-left-leave-to {
  transform: translateX(100%);
}
</style>

3. Data transfer between pages

In uniapp, data transfer between pages can be achieved through parameter transfer, Vuex, local storage, etc. Data transfer.

  1. Use parameter passing method

When jumping to the target page through the uni.navigateTo or uni.redirectTo method, you can pass parameters through the url.

In page A:

uni.navigateTo({
  url: 'pages/B/B?id=1&name=uniapp'
})

In page B, you can get the passed parameters through this.$route.query object:

<template>
  <view>
    <text>{{ $route.query.id }}</text>
    <text>{{ $route.query.name }}</text>
  </view>
</template>
  1. Use Vuex Data transfer

In uniapp, you can use Vuex for global state management.

In index.js under the store folder:

import Vue from 'vue'
import Vuex from 'vuex'

Vue.use(Vuex)

const store = new Vuex.Store({
  state: {
    userInfo: null
  },
  mutations: {
    setUserInfo(state, info) {
      state.userInfo = info
    }
  }
})

export default store

In page A:

this.$store.commit('setUserInfo', {id: 1, name: 'uniapp'})

In page B, you can pass this.$store.state. userInfo gets the data.

4. Management of page stack

In uniapp, the management of page stack is very important. Through reasonable page stack management, seamless switching between pages can be achieved.

  1. Maximum limit of page stack

In uniapp, the default page stack depth is 10 levels, that is, the oldest page will be cleared if it exceeds 10 levels. If you need to modify the page stack depth, you can configure it in the pages.json file.

"splashscreen": {
  "pages": [
    {
      "path": "pages/page1/page1",
      "style": {
        "navigationBarTitleText": "page1"
      },
      "events": {
        "init": "",
        "show": ""
      },
      "style": {},
      "window": {}
    }
  ],
  "globalStyle": {
    "navigationBarTextStyle": "black",
    "navigationBarTitleText": "uni-app",
    "navigationBarBackgroundColor": "#F8F8F8",
    "backgroundColor": "#F8F8F8"
  },
  "tabBar": {}
}
  1. Return to the specified page

The specified page in the page stack can be returned through the uni.navigateBack method.

In the sub-page:

uni.navigateBack({
  delta: 2  // 返回上上页面
})

Through the above method, we can achieve seamless routing switching between pages in uniapp to improve the user experience. Hope the above content is helpful to you.

The above is the detailed content of How to achieve seamless routing switching between pages in uniapp. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
如何使用Vue Router实现路由切换时的过渡效果?如何使用Vue Router实现路由切换时的过渡效果?Jul 21, 2023 pm 06:55 PM

如何使用VueRouter实现路由切换时的过渡效果?引言:VueRouter是Vue.js官方推荐的用于构建SPA(SinglePageApplication)的路由管理库,它可以通过管理URL路由和组件之间的对应关系来实现页面间的切换。在实际开发中,为了提升用户体验或者满足设计需求,我们常常会使用过渡效果来增添页面切换的动感和美感。本文将介绍如何使

如何在Vue项目中实现前进和后退路由切换动画效果?如何在Vue项目中实现前进和后退路由切换动画效果?Jul 21, 2023 pm 03:34 PM

如何在Vue项目中实现前进和后退路由切换动画效果?在Vue项目中,我们经常会使用VueRouter来管理路由。当我们切换路由的时候,页面的切换是瞬间完成的,没有过渡效果。如果我们想要给页面切换添加一些动画效果,可以使用Vue的过渡系统。Vue的过渡系统提供了一种简单的方式来在元素插入或删除时添加过渡效果。我们可以利用这一特性来实现前进和后退路由切换的动画效

uniapp实现如何在页面中添加下拉刷新和上拉加载更多的功能uniapp实现如何在页面中添加下拉刷新和上拉加载更多的功能Oct 25, 2023 pm 12:16 PM

Uniapp实现下拉刷新和上拉加载更多是很常见的需求,在这篇文章中,我们将详细介绍如何在Uniapp中实现这两个功能,并给出具体的代码示例。一、下拉刷新功能的实现在pages目录下选择你需要添加下拉刷新功能的页面,打开该页面的vue文件。在template中添加下拉刷新的结构,可以使用uni自带的下拉刷新组件uni-scroll-view,代码如下:&lt;

uniapp中如何实现图片裁剪框选uniapp中如何实现图片裁剪框选Jul 07, 2023 am 10:04 AM

Uniapp中如何实现图片裁剪框选引言图片裁剪是移动应用开发中常见的需求之一。在Uniapp中,我们可以利用一些插件或写一些自定义的代码来实现图片裁剪框选的功能。本文将介绍如何使用uni-cropper插件来实现图片裁剪框选,并提供相关的代码示例。步骤1.安装uni-cropper插件首先,在Uniapp项目中安装uni-cropper

uniapp中如何实现社交分享和朋友圈功能uniapp中如何实现社交分享和朋友圈功能Oct 27, 2023 pm 12:00 PM

Uniapp是一种基于Vue.js的开发框架,它可以跨平台开发各种应用程序。在实现社交分享和朋友圈功能时,Uniapp提供了一些插件和API可以方便地实现。本文将介绍如何在Uniapp中实现社交分享和朋友圈功能,并提供具体的代码示例。首先,我们需要使用uni的社交分享插件uni-share来实现社交分享功能。在pages.json的usingCompo

uniapp中如何实现演讲培训和口才提高uniapp中如何实现演讲培训和口才提高Oct 20, 2023 am 10:04 AM

uniapp中如何实现演讲培训和口才提高,需要具体代码示例演讲是一种重要的表达能力,在很多场合都会用到。而提高口才不仅能够帮助我们更好地传达自己的思想,还能提升个人魅力。在uniapp中,我们可以借助一些技术手段来实现演讲培训和口才提高的功能。下面,我将具体介绍uniapp中如何实现这一功能,并提供一些代码示例。一、实现录音功能实现演讲培训和口才提高的第一步

如何在vue项目中使用keep-alive优化路由切换效果如何在vue项目中使用keep-alive优化路由切换效果Jul 22, 2023 pm 12:29 PM

如何在vue项目中使用keep-alive优化路由切换效果在vue项目中,路由切换是一个常见的操作。但是,当我们频繁切换路由时,会发现每次切换都会重新加载组件和数据,导致页面加载速度慢,用户体验也较差。为了解决这个问题,我们可以使用vue的keep-alive组件来优化路由切换效果。keep-alive是vue提供的一个抽象组件,可以将其包裹在需要缓存的组件

uniapp中如何实现考试成绩查询和学分管理uniapp中如何实现考试成绩查询和学分管理Oct 19, 2023 am 09:45 AM

uniapp中如何实现考试成绩查询和学分管理一、引言在大学生活中,考试成绩查询和学分管理是非常重要的事情。为了方便学生查询成绩和管理学分,我们可以利用uniapp这个跨平台开发框架来实现一个简单的考试成绩查询和学分管理系统。本文将介绍使用uniapp实现考试成绩查询和学分管理的具体步骤,并附上相关的代码示例。二、考试成绩查询创建页面首先,我们需要创建一个页面

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)