百度智能小程序 關(guān)閉當前頁面(跳轉(zhuǎn)到應(yīng)用內(nèi)的某個頁面)

2020-09-05 14:07 更新

swan.redirectTo

解釋:關(guān)閉當前頁面,跳轉(zhuǎn)到應(yīng)用內(nèi)的某個頁面。

方法參數(shù)

Object object

object參數(shù)說明

屬性名 類型 必填 默認值 說明

url

String

需要跳轉(zhuǎn)的應(yīng)用內(nèi)非 tabBar 的頁面的路徑,路徑后可以帶參數(shù)。參數(shù)與路徑之間使用?分隔,參數(shù)鍵與參數(shù)值用=相連,不同參數(shù)用&分隔;如 ‘path?key=value&key2=value2’。

success

Function

接口調(diào)用成功的回調(diào)函數(shù)

fail

Function

接口調(diào)用失敗的回調(diào)函數(shù)

complete

Function

接口調(diào)用結(jié)束的回調(diào)函數(shù)(調(diào)用成功、失敗都會執(zhí)行)

示例


代碼示例 

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

<view class="wrap">
    <button bind:tap="redirectTo" type="primary" hover-stop-propagation="true">在當前頁面打開</button>
</view>
Page({

    redirectTo(e) {
        swan.redirectTo({
            url: '/detail/detail?id=當前頁',
            success: res => {
                console.log('redirectTo success');
            },
            fail: err => {
                console.log('redirectTo fail', err);
            }
        });
    }
});

參考示例

參考示例 - 多級頁面的跳轉(zhuǎn) 

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

Page({

    redirectTo(e) {
        swan.redirectTo({
            url: '/detail/detail',
            success: res => {
                console.log('redirectTo success');
            },
            fail: err => {
                console.log('redirectTo fail', err);
            }
        });
    }
});


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

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號