Taro 經常使用 API

Taro 經常使用 API 說明 網址
Taro.getSystemInfoSync() 獲取系統信息同步接口。 https://nervjs.github.io/taro/docs/native-api.html#tarogetsysteminfosync
Taro.getCurrentPages(OBJECT) 使用方式同 getCurrentPages, 獲取當前的頁面棧,決定須要返回幾層。 https://nervjs.github.io/taro/docs/native-api.html#tarogetcurrentpagesobject
Page.route 當前頁面的路徑,類型爲String。 https://developers.weixin.qq.com/miniprogram/dev/reference/api/Page.html
Taro.createSelectorQuery() 返回一個 SelectorQuery 對象實例。能夠在這個實例上使用 select 等方法選擇節點,並使用 boundingClientRect 等方法選擇須要查詢的信息。 https://nervjs.github.io/taro/docs/native-api.html#tarocreateselectorquery
nodesRef.boundingClientRect([callback]) 添加節點的佈局位置的查詢請求,相對於顯示區域,以像素爲單位。其功能相似於 DOM 的 getBoundingClientRect。返回值是 nodesRef 對應的 selectorQuery。返回的節點信息中,每一個節點的位置用 left、right、top、bottom、width、height 字段描述。若是提供了 callback 回調函數,在執行 selectQuery 的 exec 方法後,節點信息會在 callback 中返回。 https://nervjs.github.io/taro/docs/native-api.html#nodesrefboundingclientrect-callback
selectorQuery.exec([callback]) 執行全部的請求,請求結果按請求次序構成數組,在 callback 的第一個參數中返回。 https://nervjs.github.io/taro/docs/native-api.html#selectorqueryexec-callback
Taro.navigateTo(OBJECT) 使用方式同 wx.navigateTo,支持 Promise 化使用。 https://nervjs.github.io/taro/docs/native-api.html#taronavigatetoobject
Taro.getSetting(OBJECT) 獲取用戶的當前設置。返回值中只會出現小程序已經向用戶請求過的權限。使用方式同 wx.getSetting,支持 Promise 化使用。 https://nervjs.github.io/taro/docs/native-api.html#tarogetsettingobject
相關文章
相關標籤/搜索