添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
相关文章推荐
读研的作业本  ·  [PDF] Differentiating ...·  6 月前    · 
活泼的黄花菜  ·  C++ ...·  6 月前    · 
无邪的创口贴  ·  Logstash automatic ...·  8 月前    · 
酷酷的鸵鸟  ·  The newgank from ...·  1 年前    · 

页面路由

更新时间:

了解如何打开页面、回退,并传递参数

组件 a 切换页面

组件 a 可通过配置 href 属性跳转到应用内的页面

示例如下:

<template>
  <div class="tutorial-page">
    <!-- 以'/'开头的应用内页面的路径 -->
    <a href="/PageParams/receiveparams">跳转到接收参数页面</a>
    <!-- 以非'/'开头的应用内页面的名称 -->
    <a href="PageParams/receiveparams">跳转到接收参数页面</a>
    <!-- 特殊的,如果uri的值是'/',则跳转到path为'/'的页,没有则跳转到首页-->
    <a href="/">跳转到首页</a>
  </div>
</template>
复制代码

通过组件 a 实现页面切换时,可以通过'?key=value'的方式添加参数,支持参数为变量

示例如下:

<template>
  <div class="tutorial-page">
    <!-- 添加参数 -->
    <a href="/PageParams/receiveparams?key=Hello, world!">携带参数key1跳转</a>
    <!-- 添加变量参数 -->
    <a href="/PageParams/receiveparams?key={{title}}">携带参数key2跳转</a>
  </div>
</template>
<style>
  .tutorial-page {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 75px;
    font-size: 30px;
    color: #09ba07;
    text-decoration: underline;
</style>
<script>
  export default {
    data: {
      title: 'Hello, world!',
    onInit() {
      console.log('组件a切换页面并传递参数')
</script>
复制代码

接口 router 切换页面

router 接口在使用前,需要先导入模块

router.push(OBJECT) / router.replace(OBJECT) 支持的参数 uri 与组件 a 的 href 属性完全一致

示例如下:

<template>
  <div class="tutorial-page">
    <input class="btn" type="button" value="跳转到接收参数页面" onclick="routePagePush"></input>
    <input class="btn" type="button" value="跳转到接收参数页面,当前页面无法返回" onclick="routePageReplace"></input>
    <input class="btn" type="button" value="返回上一页" onclick="routePageBack"></input>
    <input class="btn" type="button" value="清空页面记录,仅保留当前页面" onclick="routePageClear"></input>
  </div>
</template>
<style>
  .tutorial-page {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  .btn {
    width: 550px;
    height: 86px;
    margin-top: 75px;
    border-radius: 43px;
    background-color: #09ba07;
    font-size: 30px;
    color: #ffffff;
</style>
<script>
  // 导入模块
  import router from '@blueos.app.router'
  export default {
    onInit () {
      console.log('接口router切换页面')
    routePagePush () {
      // 跳转到应用内的某个页面
      router.push({
        uri: '/PageParams/receiveparams'
    routePageReplace () {
      // 跳转到应用内的某个页面,当前页面无法返回
      router.replace({
        uri: '/PageParams/receiveparams'
    routePageBack () {
      // 返回上一页面
      router.back()
    routePageClear () {
      // 清空所有历史页面记录,仅保留当前页面
      router.clear()
</script>
复制代码

router 接口的参数 params 可配置页面跳转时需要传递的参数

示例如下:

<template>
  <div class="tutorial-page">
    <input class="btn" type="button" value="携带参数跳转页面" onclick="routePagePushWithParams"></input>
    <input class="btn" type="button" value="携带参数跳转页面,当前页面无法返回" onclick="routePageReplaceWithParams"></input>
  </div>
</template>
<style>
  .tutorial-page {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  .btn {
    width: 550px;
    height: 86px;
    margin-top: 75px;
    border-radius: 43px;
    background-color: #09ba07;
    font-size: 30px;
    color: #ffffff;
</style>
<script>
  // 导入模块
  import router from '@blueos.app.router'
  export default {
    data: {
      title: 'Hello, world!'
    onInit () {
      console.log('接口router切换页面并传递参数')
    routePagePushWithParams () {
      // 跳转到应用内的某个页面
      router.push({
        uri: '/PageParams/receiveparams',
        params: { key: this.title }
    routePageReplaceWithParams () {
      // 跳转到应用内的某个页面,当前页面无法返回
      router.replace({
        uri: '/PageParams/receiveparams',
        params: { key: this.title }
</script>
复制代码

现在,开发者已经掌握了通过组件 a 和接口 router 在页面之间传递参数的方法,如何接收参数呢?

其实很简单,组件 a 和接口 router 传递的参数的接收方法完全一致:在页面的 ViewModel 的 data属性 中声明使用的属性

示例如下:

<template>
  <div class="tutorial-page">
    <text>page</text>
    <!-- template中显示页面传递的参数 -->
    <text>{{key}}</text>
  </div>
</template>
<style>
  .tutorial-page {
    flex-direction: column;
    justify-content: center;
    align-items: center;
</style>
<script>
  export default {
    data: {
      key: '',
    onInit() {
      console.log('接收参数')