百度智能小程序 頁面導(dǎo)航

2020-09-02 10:15 更新

navigator 頁面導(dǎo)航

解釋:頁面鏈接,控制小程序的跳轉(zhuǎn),既可在當(dāng)前小程序內(nèi)部進(jìn)行跳轉(zhuǎn),也可跳轉(zhuǎn)至其他小程序。navigator 的子節(jié)點(diǎn)背景色應(yīng)為透明色。

屬性說明

屬性名 類型 默認(rèn)值 必填 說明 最低版本

target

String

self

在哪個(gè)目標(biāo)上發(fā)生跳轉(zhuǎn),默認(rèn)當(dāng)前小程序,有效值 self/miniProgram

2.5.2
低版本請(qǐng)做兼容性處理

url

String

應(yīng)用內(nèi)的跳轉(zhuǎn)鏈接

-

open-type

String

navigate

跳轉(zhuǎn)方式

-

delta

Number

當(dāng) open-type 為 ‘navigateBack’ 時(shí)有效,表示回退的層數(shù)

-

app-id

String

當(dāng) target="miniProgram"時(shí)有效,要打開的小程序 App Key (小程序后臺(tái)設(shè)置-開發(fā)設(shè)置中)

2.5.2
低版本請(qǐng)做兼容性處理

path

String

當(dāng) target="miniProgram"時(shí)有效,打開的頁面路徑,如果為空則打開首頁。

2.5.2
低版本請(qǐng)做兼容性處理

extra-data

Object

當(dāng) target="miniProgram"時(shí)有效,需要傳遞給目標(biāo)小程序的數(shù)據(jù),目標(biāo)小程序可在 App.onLaunch(),App.onShow() 中獲取到這份數(shù)據(jù)。詳情

2.5.2
低版本請(qǐng)做兼容性處理

version

String

release

當(dāng) target="miniProgram"時(shí)有效,要打開的小程序版本,有效值 develop(開發(fā)版),trial(體驗(yàn)版),release(正式版),僅在當(dāng)前小程序?yàn)殚_發(fā)版或體驗(yàn)版時(shí)此參數(shù)有效;如果當(dāng)前小程序是正式版,則打開的小程序必定是正式版。

2.5.2
低版本請(qǐng)做兼容性處理

hover-class

String

navigator-hover

指定點(diǎn)擊時(shí)的樣式類,當(dāng)hover-class="none"時(shí),沒有點(diǎn)擊態(tài)效果。

hover-stop-propagation

Boolean

false

指定是否阻止本節(jié)點(diǎn)的祖先節(jié)點(diǎn)出現(xiàn)點(diǎn)擊態(tài)。

-

hover-start-time

Number

50

按住后多久出現(xiàn)點(diǎn)擊態(tài),單位毫秒。

-

hover-stay-time

Number

600

手指松開后點(diǎn)擊態(tài)保留時(shí)間,單位毫秒。

-

bindsuccess

String

當(dāng) target="miniProgram"時(shí)有效,跳轉(zhuǎn)小程序成功。

2.5.2
低版本請(qǐng)做兼容性處理

bindfail

String

當(dāng) target="miniProgram"時(shí)有效,跳轉(zhuǎn)小程序失敗。

2.5.2
低版本請(qǐng)做兼容性處理

bindcomplete

String

當(dāng) target="miniProgram"時(shí)有效,跳轉(zhuǎn)小程序完成。

2.5.2
低版本請(qǐng)做兼容性處理

target 有效值

說明

self

當(dāng)前小程序

miniProgram

跳轉(zhuǎn)到另一個(gè)小程序

version 有效值

說明

develop

開發(fā)版

trial

體驗(yàn)版

release

正式版

open-type 有效值

說明 最低版本

navigate

對(duì)應(yīng) swan.navigateTo 的功能

redirect

對(duì)應(yīng) swan.redirectTo 的功能

switchTab

對(duì)應(yīng) swan.switchTab 的功能

navigateBack

對(duì)應(yīng) swan.navigateBack 的功能

reLaunch

對(duì)應(yīng) swan.reLaunch 的功能

exit

退出小程序,target="miniProgram"時(shí)生效

2.5.2

示例 

在開發(fā)者工具中打開


代碼示例 1

<view class="wrap">
    <view class="card-area">
        <button type="primary">
            <navigator 
                target="self" 
                open-type="navigate" 
                url="/component/detail/detail?id=新頁面,點(diǎn)擊左上角返回回到之前頁面"
                hover-class="navigator-hover" 
                hover-start-time="50"
                hover-stay-time="600"
                hover-stop-propagation="true">
                跳轉(zhuǎn)到新頁面
            </navigator>
        </button>
        <button type="primary">
            <navigator 
                s-if="{{!isWeb}}" 
                target="self" 
                open-type="redirect" 
                url="/component/detail/detail?id=當(dāng)前頁,點(diǎn)擊左上角返回回到上級(jí)菜單"        
                hover-class="navigator-hover" 
                hover-start-time="50"
                hover-stay-time="600"
                hover-stop-propagation="true">
                在當(dāng)前頁打開
            </navigator>
        </button>

        <button type="primary">
            <navigator 
                s-if="{{!isWeb}}" 
                target="self" 
                open-type="navigateBack" 
                hover-class="navigator-hover" 
                hover-start-time="50"
                hover-stay-time="600"
                hover-stop-propagation="true"
                delta="1">
                返回上一頁面
            </navigator>
        </button>

        <button type="primary">
            <navigator 
                s-if="{{!isWeb}}" 
                target="miniProgram" 
                open-type="exit">
                退出當(dāng)前小程序
            </navigator>
        </button>

        <button type="primary">
            <navigator 
                target="self" 
                open-type="switchTab" 
                url="/entry/component/component">
                打開一個(gè)有Tab的頁面
            </navigator>
        </button>

        <button type="primary">
            <navigator 
                target="self" 
                open-type="reLaunch" 
                url="/component/detail/detail?id=新頁面,點(diǎn)擊左上角返回回到上級(jí)菜單">
                關(guān)閉所有頁面打開新頁面
            </navigator>
        </button>

        <button type="primary">
            <navigator 
                target="miniProgram" 
                s-if="{{!isWeb}}" 
                open-type="navigate" 
                extra-data="extra-data" 
                app-id="79RKhZ2BTvyyHitg4W3Xle4kkFgwwXyp" 
                version="release" 
                bindsuccess="successHandler" 
                bindfail="failHandler" 
                bindcomplete="completeHandler">
                打開綁定的小程序
            </navigator>
        </button>
    </view>
</view>
Page({
    data: {},
    successHandler(e) {
        console.log('success', e.detail.errMsg);
    },
    failHandler(e) {
        console.log('fail', e.detail.errMsg);
    },
    completeHandler(e) {
        console.log('complete', e.detail.errMsg);
    }
});

參考示例

參考示例 1: 接收 H5 頁傳過來的參數(shù)

在開發(fā)者工具中打開

  • 在 index 文件中
<view class="wrap">
    <button type="primary">
        <navigator 
            target="self" 
            open-type="navigate" 
            url="/detail/detail?webViewUrl=https://smartprogram.baidu.com&Math.radom()" hover-class="navigator-hover" 
            hover-stop-propagation="true">
            跳轉(zhuǎn)到新頁面
        </navigator>
    </button>
</view>
  • 在 detail 文件中
    <web-view src="{{url}}"></web-view>
    Page({
        data: {
            src: ''
        },
       //接收H5頁傳過來的參數(shù)
        onLoad(options) {
            this.setData({'src': options.webViewUrl})
        },
        onShow(){
            this.onLoad()
        }
    });
  • 說明
    navigator-hover 默認(rèn)為:
    {
        background-color: rgba(0, 0, 0, 0.1);
        opacity: 0.7;
    }

常見問題

Q:請(qǐng)問下如何關(guān)閉小程序

A: 可以通過組件進(jìn)行關(guān)閉當(dāng)前小程序的操作。

代碼示例

<button type="primary">
    <navigator target="miniProgram" open-type="exit">退出當(dāng)前小程序</navigator>
</button>


以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)