From 557efcba81e80fe6aced07551e07c109025e5d2c Mon Sep 17 00:00:00 2001 From: Garfield Lee Date: Mon, 11 Mar 2019 16:44:20 +0800 Subject: [PATCH] =?UTF-8?q?docs(native-api):=20=E5=90=8D=E8=AF=8D=E8=A7=84?= =?UTF-8?q?=E8=8C=83=E5=8C=96=EF=BC=8C=E4=BF=AE=E6=AD=A3=E5=B0=8F=E7=A8=8B?= =?UTF-8?q?=E5=BA=8F=20API=20=E9=93=BE=E6=8E=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/native-api.md | 373 ++++++++++++++++++++++----------------------- 1 file changed, 186 insertions(+), 187 deletions(-) diff --git a/docs/native-api.md b/docs/native-api.md index 56663661705b..302609606e9e 100644 --- a/docs/native-api.md +++ b/docs/native-api.md @@ -100,7 +100,7 @@ Taro.request({ url }) > API 支持度 -| API | 微信小程序 | H5 | ReactNative | 支付宝小程序 | 百度小程序 | 头条小程序 | +| API | 微信小程序 | H5 | React Native | 支付宝小程序 | 百度小程序 | 头条小程序 | | :-: | :-: | :-: | :-: | :-: | :-: | :-: | | Taro.request | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | | Taro.addInterceptor | ✔️ | ✔️ | | ✔️ | ✔️ | ✔️ | @@ -109,7 +109,7 @@ Taro.request({ url }) #### Taro.uploadFile(OBJECT) -使用方式同 [`wx.uploadFile`](https://developers.weixin.qq.com/miniprogram/dev/api/network-file.html#wxuploadfileobject),支持 `Promise` 化使用。 +使用方式同 [`wx.uploadFile`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.uploadFile.html),支持 `Promise` 化使用。 **示例代码:** @@ -121,7 +121,7 @@ const uploadTask = Taro.uploadFile(params).then(...) #### Taro.downloadFile(OBJECT) -使用方式同 [`wx.downloadFile`](https://developers.weixin.qq.com/miniprogram/dev/api/network-file.html#wxdownloadfileobject),支持 `Promise` 化使用。 +使用方式同 [`wx.downloadFile`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.downloadFile.html),支持 `Promise` 化使用。 **示例代码:** @@ -133,7 +133,7 @@ Taro.downloadFile(params).then(...) > API 支持度 -| API | 微信小程序 | H5 | ReactNative | 支付宝小程序 | 百度小程序 | +| API | 微信小程序 | H5 | React Native | 支付宝小程序 | 百度小程序 | | :-: | :-: | :-: | :-: | :-: | :-: | | Taro.uploadFile | ✔️ | | ✔️ | ✔️ | ✔️ | | Taro.downloadFile | ✔️ | | ✔️ | ✔️ | ✔️ | @@ -192,17 +192,17 @@ WebSocket 任务,可通过 [wx.connectSocket()](native-api.md#taroconnectsocke 属性 -socketTask.readyState: websocket 当前的连接状态。 +socketTask.readyState: WebSocket 当前的连接状态。 -socketTask.CONNECTING: websocket 状态值:连接中。 +socketTask.CONNECTING: WebSocket 状态值:连接中。 -socketTask.OPEN: websocket 状态值:已连接。 +socketTask.OPEN: WebSocket 状态值:已连接。 -socketTask.CLOSING: websocket 状态值:关闭中。 +socketTask.CLOSING: WebSocket 状态值:关闭中。 -socketTask.CLOSED: websocket 状态值:已关闭。 +socketTask.CLOSED: WebSocket 状态值:已关闭。 -socketTask.ws: 浏览器 websocket 实例。(**h5 端独有**) +socketTask.ws: 浏览器 WebSocket 实例。(**H5 端独有**) 方法 @@ -294,7 +294,7 @@ SocketTask.onMessage(CALLBACK) > API 支持度 -| API | 微信小程序 | H5 | ReactNative | 支付宝小程序 | 百度小程序 | +| API | 微信小程序 | H5 | React Native | 支付宝小程序 | 百度小程序 | | :-: | :-: | :-: | :-: | :-: | :-: | | Taro.connectSocket | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | | SocketTask | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | @@ -311,9 +311,9 @@ SocketTask.onMessage(CALLBACK) #### Taro.chooseImage(OBJECT) -使用方式同 [`wx.chooseImage `](https://developers.weixin.qq.com/miniprogram/dev/api/media-picture.html#wxchooseimageobject),支持 `Promise` 化使用。 +使用方式同 [`wx.chooseImage `](https://developers.weixin.qq.com/miniprogram/dev/api/wx.chooseImage.html),支持 `Promise` 化使用。 -注:RN端该API不支持 `count` 属性;不支持相机与相册同时选择,只会取 `sourceType` 数组里的第一个值。默认从相册选取图片。 +注:RN 端该 API 不支持 `count` 属性;不支持相机与相册同时选择,只会取 `sourceType` 数组里的第一个值。默认从相册选取图片。 **示例代码:** @@ -325,7 +325,7 @@ Taro.chooseImage(params).then(...) #### Taro.previewImage(OBJECT) -使用方式同 [`wx.previewImage`](https://developers.weixin.qq.com/miniprogram/dev/api/media-picture.html#wxpreviewimageobject),支持 `Promise` 化使用。 +使用方式同 [`wx.previewImage`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.previewImage.html),支持 `Promise` 化使用。 **示例代码:** @@ -337,7 +337,7 @@ Taro.previewImage(params).then(...) #### Taro.getImageInfo(OBJECT) -使用方式同 [`wx.getImageInfo`](https://developers.weixin.qq.com/miniprogram/dev/api/media-picture.html#wxgetimageinfoobject),支持 `Promise` 化使用。 +使用方式同 [`wx.getImageInfo`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.getImageInfo.html),支持 `Promise` 化使用。 **示例代码:** @@ -349,7 +349,7 @@ Taro.getImageInfo(params).then(...) #### Taro.saveImageToPhotosAlbum(OBJECT) -使用方式同 [`wx.saveImageToPhotosAlbum`](https://developers.weixin.qq.com/miniprogram/dev/api/media-picture.html#wxsaveimagetophotosalbumobject),支持 `Promise` 化使用。 +使用方式同 [`wx.saveImageToPhotosAlbum`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.saveImageToPhotosAlbum.html),支持 `Promise` 化使用。 **示例代码:** @@ -361,7 +361,7 @@ Taro.saveImageToPhotosAlbum(params).then(...) > API 支持度 -| API | 微信小程序 | H5 | ReactNative | 支付宝小程序 | 百度小程序 | +| API | 微信小程序 | H5 | React Native | 支付宝小程序 | 百度小程序 | | :-: | :-: | :-: | :-: | :-: | :-: | | Taro.chooseImage | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | | Taro.previewImage | ✔️ | | ✔️ | ✔️ | ✔️ | @@ -372,7 +372,7 @@ Taro.saveImageToPhotosAlbum(params).then(...) #### Taro.startRecord(OBJECT) -使用方式同 [`wx.startRecord`](https://developers.weixin.qq.com/miniprogram/dev/api/media-record.html#wxstartrecordobject),支持 `Promise` 化使用。 +使用方式同 [`wx.startRecord`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.startRecord.html),支持 `Promise` 化使用。 **示例代码:** @@ -396,7 +396,7 @@ Taro.stopRecord() > API 支持度 -| API | 微信小程序 | H5 | ReactNative | 支付宝小程序 | 百度小程序 | +| API | 微信小程序 | H5 | React Native | 支付宝小程序 | 百度小程序 | | :-: | :-: | :-: | :-: | :-: | :-: | | Taro.startRecord | ✔️ | | | | | | Taro.stopRecord | ✔️ | | | | | @@ -405,7 +405,7 @@ Taro.stopRecord() #### Taro.getRecorderManager() -使用方式同 [`wx.getRecorderManager`](https://developers.weixin.qq.com/miniprogram/dev/api/getRecorderManager.html)。 +使用方式同 [`wx.getRecorderManager`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.getRecorderManager.html)。 **示例代码:** @@ -417,7 +417,7 @@ const recorderManager = Taro.getRecorderManager() > API 支持度 -| API | 微信小程序 | H5 | ReactNative | 支付宝小程序 | 百度小程序 | +| API | 微信小程序 | H5 | React Native | 支付宝小程序 | 百度小程序 | | :-: | :-: | :-: | :-: | :-: | :-: | | Taro.getRecorderManager | ✔️ | | | | | @@ -425,7 +425,7 @@ const recorderManager = Taro.getRecorderManager() #### Taro.playVoice(OBJECT) -使用方式同 [`wx.playVoice`](https://developers.weixin.qq.com/miniprogram/dev/api/media-voice.html#wxplayvoiceobject),支持 `Promise` 化使用。 +使用方式同 [`wx.playVoice`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.playVoice.html),支持 `Promise` 化使用。 **示例代码:** @@ -473,7 +473,7 @@ Taro.startRecord(params) > API 支持度 -| API | 微信小程序 | H5 | ReactNative | 支付宝小程序 | 百度小程序 | +| API | 微信小程序 | H5 | React Native | 支付宝小程序 | 百度小程序 | | :-: | :-: | :-: | :-: | :-: | :-: | | Taro.playVoice | ✔️ | | | | | | Taro.pauseVoice | ✔️ | | | | | @@ -483,7 +483,7 @@ Taro.startRecord(params) #### Taro.getBackgroundAudioPlayerState(OBJECT) -使用方式同 [`wx.getBackgroundAudioPlayerState`](https://developers.weixin.qq.com/miniprogram/dev/api/media-background-audio.html#wxgetbackgroundaudioplayerstateobject),支持 `Promise` 化使用。 +使用方式同 [`wx.getBackgroundAudioPlayerState`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.getBackgroundAudioPlayerState.html),支持 `Promise` 化使用。 **示例代码:** @@ -495,7 +495,7 @@ Taro.getBackgroundAudioPlayerState(params).then(...) #### Taro.playBackgroundAudio(OBJECT) -使用方式同 [`wx.playBackgroundAudio`](https://developers.weixin.qq.com/miniprogram/dev/api/media-background-audio.html#wxplaybackgroundaudioobject),支持 `Promise` 化使用。 +使用方式同 [`wx.playBackgroundAudio`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.playBackgroundAudio.html),支持 `Promise` 化使用。 **示例代码:** @@ -519,7 +519,7 @@ Taro.pauseBackgroundAudio() #### Taro.seekBackgroundAudio(OBJECT) -使用方式同 [`wx.seekBackgroundAudio`](https://developers.weixin.qq.com/miniprogram/dev/api/media-background-audio.html#wxseekbackgroundaudioobject),支持 `Promise` 化使用。 +使用方式同 [`wx.seekBackgroundAudio`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.seekBackgroundAudio.html),支持 `Promise` 化使用。 **示例代码:** @@ -555,7 +555,7 @@ Taro.stopBackgroundAudio() > API 支持度 -| API | 微信小程序 | H5 | ReactNative | 支付宝小程序 | 百度小程序 | +| API | 微信小程序 | H5 | React Native | 支付宝小程序 | 百度小程序 | | :-: | :-: | :-: | :-: | :-: | :-: | | Taro.getBackgroundAudioPlayerState | ✔️ | | | | Taro.playBackgroundAudio | ✔️ | | | @@ -570,7 +570,7 @@ Taro.stopBackgroundAudio() #### Taro.getBackgroundAudioManager() -使用方式同 [`wx.getBackgroundAudioManager`](https://developers.weixin.qq.com/miniprogram/dev/api/getBackgroundAudioManager.html)。 +使用方式同 [`wx.getBackgroundAudioManager`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.getBackgroundAudioManager.html)。 **示例代码:** @@ -582,7 +582,7 @@ const backgroundAudioManager = Taro.getBackgroundAudioManager() > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.getBackgroundAudioManager | ✔️ | | | @@ -590,7 +590,7 @@ const backgroundAudioManager = Taro.getBackgroundAudioManager() #### Taro.createAudioContext(audioId, this.$scope) -使用方式同 [`wx.createAudioContext`](https://developers.weixin.qq.com/miniprogram/dev/api/api-audio.html#wxcreateaudiocontextaudioid)。 +使用方式同 [`wx.createAudioContext`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.createAudioContext.html)。 **示例代码:** @@ -602,7 +602,7 @@ const audioCtx = Taro.createAudioContext('myAudio') #### Taro.createInnerAudioContext() -使用方式同 [`wx.createInnerAudioContext`](https://developers.weixin.qq.com/miniprogram/dev/api/createInnerAudioContext.html)。 +使用方式同 [`wx.createInnerAudioContext`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.createInnerAudioContext.html)。 **示例代码:** @@ -614,7 +614,7 @@ const innerAudioContext = Taro.createInnerAudioContext() > API 支持度 -| API | 微信小程序 | H5 | ReactNative | 支付宝小程序 | 百度小程序 | +| API | 微信小程序 | H5 | React Native | 支付宝小程序 | 百度小程序 | | :-: | :-: | :-: | :-: | :-: | :-: | | Taro.createAudioContext | ✔️ | | | | Taro.createInnerAudioContext | ✔️ | | | @@ -623,7 +623,7 @@ const innerAudioContext = Taro.createInnerAudioContext() #### Taro.chooseVideo(OBJECT) -使用方式同 [`wx.chooseVideo`](https://developers.weixin.qq.com/miniprogram/dev/api/media-video.html#wxchoosevideoobject),支持 `Promise` 化使用。 +使用方式同 [`wx.chooseVideo`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.chooseVideo.html),支持 `Promise` 化使用。 注:RN端该API不支持 `compressed` 、`maxDuration`、`camera` 属性;不支持相册与相机同时选择,只会取 `sourceType` 数组里的第一个值。默认从相册选取视频。 @@ -637,7 +637,7 @@ Taro.chooseVideo(params).then(...) #### Taro.saveVideoToPhotosAlbum(OBJECT) -使用方式同 [`wx.saveVideoToPhotosAlbum`](https://developers.weixin.qq.com/miniprogram/dev/api/media-video.html#wxsavevideotophotosalbumobject),支持 `Promise` 化使用。 +使用方式同 [`wx.saveVideoToPhotosAlbum`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.saveVideoToPhotosAlbum.html),支持 `Promise` 化使用。 **示例代码:** @@ -649,7 +649,7 @@ Taro.saveVideoToPhotosAlbum(params).then(...) > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.chooseVideo | ✔️ | | ✔️ | | Taro.saveVideoToPhotosAlbum | ✔️ | | ✔️ | @@ -658,7 +658,7 @@ Taro.saveVideoToPhotosAlbum(params).then(...) #### Taro.createVideoContext(videoId, this.$scope) -使用方式同 [`wx.createVideoContext`](https://developers.weixin.qq.com/miniprogram/dev/api/api-video.html#wxcreatevideocontextvideoid)。 +使用方式同 [`wx.createVideoContext`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.createVideoContext.html)。 **示例代码:** @@ -670,7 +670,7 @@ const videoContext = Taro.createVideoContext('myVideo') > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.createVideoContext | ✔️ | | | @@ -678,7 +678,7 @@ const videoContext = Taro.createVideoContext('myVideo') #### Taro.createCameraContext(this.$scope) -使用方式同 [`wx.createCameraContext`](https://developers.weixin.qq.com/miniprogram/dev/api/api-camera.html)。 +使用方式同 [`wx.createCameraContext`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.createCameraContext.html)。 **示例代码:** @@ -690,7 +690,7 @@ const cameraContext = Taro.createCameraContext() > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.createCameraContext | ✔️ | | | @@ -698,7 +698,7 @@ const cameraContext = Taro.createCameraContext() #### Taro.saveFile(OBJECT) -使用方式同 [`wx.saveFile`](https://developers.weixin.qq.com/miniprogram/dev/api/file.html#wxsavefileobject),支持 `Promise` 化使用。 +使用方式同 [`wx.saveFile`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.saveFile.html),支持 `Promise` 化使用。 **示例代码:** @@ -710,7 +710,7 @@ Taro.saveFile(params).then(...) #### Taro.getFileInfo(OBJECT) -使用方式同 [`wx.getFileInfo`](https://developers.weixin.qq.com/miniprogram/dev/api/getFileInfo.html),支持 `Promise` 化使用。 +使用方式同 [`wx.getFileInfo`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.getFileInfo.html),支持 `Promise` 化使用。 **示例代码:** @@ -722,7 +722,7 @@ Taro.getFileInfo(params).then(...) #### Taro.getSavedFileList(OBJECT) -使用方式同 [`wx.getSavedFileList`](https://developers.weixin.qq.com/miniprogram/dev/api/file.html#wxgetsavedfilelistobject),支持 `Promise` 化使用。 +使用方式同 [`wx.getSavedFileList`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.getSavedFileList.html),支持 `Promise` 化使用。 **示例代码:** @@ -734,7 +734,7 @@ Taro.getSavedFileList(params).then(...) #### Taro.getSavedFileInfo(OBJECT) -使用方式同 [`wx.getSavedFileInfo`](https://developers.weixin.qq.com/miniprogram/dev/api/file.html#wxgetsavedfileinfoobject),支持 `Promise` 化使用。 +使用方式同 [`wx.getSavedFileInfo`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.getSavedFileInfo.html),支持 `Promise` 化使用。 **示例代码:** @@ -746,7 +746,7 @@ Taro.getSavedFileInfo(params).then(...) #### Taro.removeSavedFile(OBJECT) -使用方式同 [`wx.removeSavedFile`](https://developers.weixin.qq.com/miniprogram/dev/api/file.html#wxremovesavedfileobject),支持 `Promise` 化使用。 +使用方式同 [`wx.removeSavedFile`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.removeSavedFile.html),支持 `Promise` 化使用。 **示例代码:** @@ -758,7 +758,7 @@ Taro.removeSavedFile(params).then(...) #### Taro.openDocument(OBJECT) -使用方式同 [`wx.openDocument`](https://developers.weixin.qq.com/miniprogram/dev/api/file.html#wxopendocumentobject),支持 `Promise` 化使用。 +使用方式同 [`wx.openDocument`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.openDocument.html),支持 `Promise` 化使用。 **示例代码:** @@ -770,7 +770,7 @@ Taro.openDocument(params).then(...) > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.saveFile | ✔️ | | | | Taro.getFileInfo | ✔️ | | | @@ -975,7 +975,7 @@ Taro.clearStorageSync() > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.setStorage | ✔️ | ✔️ | ✔️ | | Taro.setStorageSync | ✔️ | ✔️ | | @@ -994,7 +994,7 @@ Taro.clearStorageSync() #### Taro.getLocation(OBJECT) -使用方式同 [`wx.getLocation`](https://developers.weixin.qq.com/miniprogram/dev/api/location.html#wxgetlocationobject),支持 `Promise` 化使用。 +使用方式同 [`wx.getLocation`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.getLocation.html),支持 `Promise` 化使用。 **示例代码:** @@ -1006,7 +1006,7 @@ Taro.getLocation(params).then(...) #### Taro.chooseLocation(OBJECT) -使用方式同 [`wx.chooseLocation`](https://developers.weixin.qq.com/miniprogram/dev/api/location.html#wxchooselocationobject),支持 `Promise` 化使用。 +使用方式同 [`wx.chooseLocation`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.chooseLocation.html),支持 `Promise` 化使用。 **示例代码:** @@ -1018,7 +1018,7 @@ Taro.chooseLocation(params).then(...) > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.getLocation | ✔️ | | ✔️ | | Taro.chooseLocation | ✔️ | | | @@ -1027,7 +1027,7 @@ Taro.chooseLocation(params).then(...) #### Taro.openLocation(OBJECT) -使用方式同 [`wx.openLocation`](https://developers.weixin.qq.com/miniprogram/dev/api/location.html#wxopenlocationobject),支持 `Promise` 化使用。 +使用方式同 [`wx.openLocation`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.openLocation.html),支持 `Promise` 化使用。 **示例代码:** @@ -1039,7 +1039,7 @@ Taro.openLocation(params).then(...) > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.openLocation | ✔️ | | | @@ -1047,7 +1047,7 @@ Taro.openLocation(params).then(...) #### Taro.createMapContext(mapId, this.$scope) -使用方式同 [`wx.createMapContext`](https://developers.weixin.qq.com/miniprogram/dev/api/api-map.html#wxcreatemapcontextmapid)。 +使用方式同 [`wx.createMapContext`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.createMapContext.html)。 **示例代码:** @@ -1059,7 +1059,7 @@ const mapCtx = Taro.createMapContext('myMap') > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.createMapContext | ✔️ | | | @@ -1153,7 +1153,7 @@ console.log(res.platform) #### Taro.canIUse(String) -使用方式同 [`wx.canIUse`](https://developers.weixin.qq.com/miniprogram/dev/api/api-caniuse.html)。 +使用方式同 [`wx.canIUse`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.canIUse.html)。 **示例代码:** @@ -1173,7 +1173,7 @@ Taro.canIUse('button.open-type.contact') > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.getSystemInfo | ✔️ | ✔️ | ✔️ | | Taro.getSystemInfoSync | ✔️ | ✔️ | ✔️ | @@ -1265,7 +1265,7 @@ Taro.onNetworkStatusChange(res => { #### Taro.onAccelerometerChange(CALLBACK) -使用方式同 [`wx.onAccelerometerChange`](https://developers.weixin.qq.com/miniprogram/dev/api/accelerometer.html#wxonaccelerometerchangecallback)。 +使用方式同 [`wx.onAccelerometerChange`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.onAccelerometerChange.html)。 **示例代码:** @@ -1281,7 +1281,7 @@ Taro.onAccelerometerChange(res => { #### Taro.startAccelerometer(OBJECT) -使用方式同 [`wx.startAccelerometer`](https://developers.weixin.qq.com/miniprogram/dev/api/accelerometer.html#wxstartaccelerometerobject)。 +使用方式同 [`wx.startAccelerometer`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.startAccelerometer.html)。 **示例代码:** @@ -1293,7 +1293,7 @@ Taro.startAccelerometer({ interval: 'game' }) #### Taro.stopAccelerometer(OBJECT) -使用方式同 [`wx.stopAccelerometer`](https://developers.weixin.qq.com/miniprogram/dev/api/accelerometer.html#wxstopaccelerometerobject)。 +使用方式同 [`wx.stopAccelerometer`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.stopAccelerometer.html)。 **示例代码:** @@ -1305,7 +1305,7 @@ Taro.stopAccelerometer() > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.onAccelerometerChange | ✔️ | | | | Taro.startAccelerometer | ✔️ | | | @@ -1315,7 +1315,7 @@ Taro.stopAccelerometer() #### Taro.onCompassChange(CALLBACK) -使用方式同 [`wx.onCompassChange`](https://developers.weixin.qq.com/miniprogram/dev/api/compass.html)。 +使用方式同 [`wx.onCompassChange`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.onCompassChange.html)。 **示例代码:** @@ -1329,7 +1329,7 @@ Taro.onCompassChange(res => { #### Taro.startCompass(OBJECT) -使用方式同 [`wx.startCompass`](https://developers.weixin.qq.com/miniprogram/dev/api/compass.html#wxstartcompassobject)。 +使用方式同 [`wx.startCompass`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.startCompass.html)。 **示例代码:** @@ -1341,7 +1341,7 @@ Taro.startCompass() #### Taro.stopCompass(OBJECT) -使用方式同 [`wx.stopCompass`](https://developers.weixin.qq.com/miniprogram/dev/api/compass.html#wxstopcompassobject)。 +使用方式同 [`wx.stopCompass`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.stopCompass.html)。 **示例代码:** @@ -1353,7 +1353,7 @@ Taro.stopCompass() > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.onCompassChange | ✔️ | | | | Taro.startCompass | ✔️ | | | @@ -1363,7 +1363,7 @@ Taro.stopCompass() #### Taro.makePhoneCall(OBJECT) -使用方式同 [`wx.makePhoneCall`](https://developers.weixin.qq.com/miniprogram/dev/api/phonecall.html#wxmakephonecallobject),支持 `Promise` 化使用。 +使用方式同 [`wx.makePhoneCall`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.makePhoneCall.html),支持 `Promise` 化使用。 **示例代码:** @@ -1375,7 +1375,7 @@ Taro.makePhoneCall(params).then(...) > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.makePhoneCall | ✔️ | ✔️ | ✔️ | @@ -1383,7 +1383,7 @@ Taro.makePhoneCall(params).then(...) #### Taro.scanCode(OBJECT) -使用方式同 [`wx.scanCode`](https://developers.weixin.qq.com/miniprogram/dev/api/scancode.html#wxscancodeobject),支持 `Promise` 化使用。 +使用方式同 [`wx.scanCode`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.scanCode.html),支持 `Promise` 化使用。 **示例代码:** @@ -1395,7 +1395,7 @@ Taro.scanCode(params).then(...) > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.scanCode | ✔️ | | | @@ -1403,7 +1403,7 @@ Taro.scanCode(params).then(...) #### Taro.setClipboardData(OBJECT) -使用方式同 [`wx.setClipboardData`](https://developers.weixin.qq.com/miniprogram/dev/api/clipboard.html#wxsetclipboarddataobject),支持 `Promise` 化使用。 +使用方式同 [`wx.setClipboardData`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.setClipboardData.html),支持 `Promise` 化使用。 **示例代码:** @@ -1415,7 +1415,7 @@ Taro.setClipboardData(params).then(...) #### Taro.getClipboardData(OBJECT) -使用方式同 [`wx.getClipboardData`](https://developers.weixin.qq.com/miniprogram/dev/api/clipboard.html#wxgetclipboarddataobject),支持 `Promise` 化使用。 +使用方式同 [`wx.getClipboardData`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.getClipboardData.html),支持 `Promise` 化使用。 **示例代码:** @@ -1427,7 +1427,7 @@ Taro.getClipboardData(params).then(...) > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.setClipboardData | ✔️ | | ✔️ | | Taro.getClipboardData | ✔️ | | ✔️ | @@ -1436,7 +1436,7 @@ Taro.getClipboardData(params).then(...) #### Taro.openBluetoothAdapter(OBJECT) -使用方式同 [`wx.openBluetoothAdapter`](https://developers.weixin.qq.com/miniprogram/dev/api/bluetooth.html#wxopenbluetoothadapterobject),支持 `Promise` 化使用。 +使用方式同 [`wx.openBluetoothAdapter`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.openBluetoothAdapter.html),支持 `Promise` 化使用。 **示例代码:** @@ -1448,7 +1448,7 @@ Taro.openBluetoothAdapter(params).then(...) #### Taro.closeBluetoothAdapter(OBJECT) -使用方式同 [`wx.closeBluetoothAdapter`](https://developers.weixin.qq.com/miniprogram/dev/api/bluetooth.html#wxclosebluetoothadapterobject),支持 `Promise` 化使用。 +使用方式同 [`wx.closeBluetoothAdapter`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.closeBluetoothAdapter.html),支持 `Promise` 化使用。 **示例代码:** @@ -1460,7 +1460,7 @@ Taro.closeBluetoothAdapter(params).then(...) #### Taro.getBluetoothAdapterState(OBJECT) -使用方式同 [`wx.getBluetoothAdapterState`](https://developers.weixin.qq.com/miniprogram/dev/api/bluetooth.html#wxgetbluetoothadapterstateobject),支持 `Promise` 化使用。 +使用方式同 [`wx.getBluetoothAdapterState`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.getBluetoothAdapterState.html),支持 `Promise` 化使用。 **示例代码:** @@ -1472,7 +1472,7 @@ Taro.getBluetoothAdapterState(params).then(...) #### Taro.onBluetoothAdapterStateChange(CALLBACK) -使用方式同 [`wx.onBluetoothAdapterStateChange`](https://developers.weixin.qq.com/miniprogram/dev/api/bluetooth.html#wxonbluetoothadapterstatechangecallback)。 +使用方式同 [`wx.onBluetoothAdapterStateChange`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.onBluetoothAdapterStateChange.html)。 **示例代码:** @@ -1486,7 +1486,7 @@ Taro.onBluetoothAdapterStateChange(res => { #### Taro.startBluetoothDevicesDiscovery(OBJECT) -使用方式同 [`wx.startBluetoothDevicesDiscovery`](https://developers.weixin.qq.com/miniprogram/dev/api/bluetooth.html#wxstartbluetoothdevicesdiscoveryobject),支持 `Promise` 化使用。 +使用方式同 [`wx.startBluetoothDevicesDiscovery`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.startBluetoothDevicesDiscovery.html),支持 `Promise` 化使用。 **示例代码:** @@ -1498,7 +1498,7 @@ Taro.startBluetoothDevicesDiscovery(params).then(...) #### Taro.stopBluetoothDevicesDiscovery(OBJECT) -使用方式同 [`wx.stopBluetoothDevicesDiscovery`](https://developers.weixin.qq.com/miniprogram/dev/api/bluetooth.html#wxstopbluetoothdevicesdiscoveryobject),支持 `Promise` 化使用。 +使用方式同 [`wx.stopBluetoothDevicesDiscovery`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.stopBluetoothDevicesDiscovery.html),支持 `Promise` 化使用。 **示例代码:** @@ -1510,7 +1510,7 @@ Taro.stopBluetoothDevicesDiscovery(params).then(...) #### Taro.getBluetoothDevices(OBJECT) -使用方式同 [`wx.getBluetoothDevices`](https://developers.weixin.qq.com/miniprogram/dev/api/bluetooth.html#wxgetbluetoothdevicesobject),支持 `Promise` 化使用。 +使用方式同 [`wx.getBluetoothDevices`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.getBluetoothDevices.html),支持 `Promise` 化使用。 **示例代码:** @@ -1522,7 +1522,7 @@ Taro.getBluetoothDevices(params).then(...) #### Taro.getConnectedBluetoothDevices(OBJECT) -使用方式同 [`wx.getConnectedBluetoothDevices`](https://developers.weixin.qq.com/miniprogram/dev/api/bluetooth.html#wxgetconnectedbluetoothdevicesobject),支持 `Promise` 化使用。 +使用方式同 [`wx.getConnectedBluetoothDevices`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.getConnectedBluetoothDevices.html),支持 `Promise` 化使用。 **示例代码:** @@ -1534,7 +1534,7 @@ Taro.getConnectedBluetoothDevices(params).then(...) #### Taro.onBluetoothDeviceFound(CALLBACK) -使用方式同 [`wx.onBluetoothDeviceFound `](https://developers.weixin.qq.com/miniprogram/dev/api/bluetooth.html#wxonbluetoothdevicefoundcallback)。 +使用方式同 [`wx.onBluetoothDeviceFound `](https://developers.weixin.qq.com/miniprogram/dev/api/wx.onBluetoothDeviceFound.html)。 **示例代码:** @@ -1549,7 +1549,7 @@ Taro.onBluetoothDeviceFound(devices => { #### Taro.createBLEConnection(OBJECT) -使用方式同 [`wx.createBLEConnection`](https://developers.weixin.qq.com/miniprogram/dev/api/bluetooth.html#wxcreatebleconnectionobject),支持 `Promise` 化使用。 +使用方式同 [`wx.createBLEConnection`](https://developers.weixin.qq.com/miniprogram/dev/api/device/bluetooth/wx.createBLEConnection.html),支持 `Promise` 化使用。 **示例代码:** @@ -1561,7 +1561,7 @@ Taro.createBLEConnection(params).then(...) #### Taro.closeBLEConnection(OBJECT) -使用方式同 [`wx.closeBLEConnection`](https://developers.weixin.qq.com/miniprogram/dev/api/bluetooth.html#wxclosebleconnectionobject),支持 `Promise` 化使用。 +使用方式同 [`wx.closeBLEConnection`](https://developers.weixin.qq.com/miniprogram/dev/api/device/bluetooth/wx.closeBLEConnection.html),支持 `Promise` 化使用。 **示例代码:** @@ -1573,7 +1573,7 @@ Taro.closeBLEConnection(params).then(...) #### Taro.getBLEDeviceServices(OBJECT) -使用方式同 [`wx.getBLEDeviceServices`](https://developers.weixin.qq.com/miniprogram/dev/api/bluetooth.html#wxgetbledeviceservicesobject),支持 `Promise` 化使用。 +使用方式同 [`wx.getBLEDeviceServices`](https://developers.weixin.qq.com/miniprogram/dev/api/device/bluetooth/wx.getBLEDeviceServices.html),支持 `Promise` 化使用。 **示例代码:** @@ -1585,7 +1585,7 @@ Taro.getBLEDeviceServices(params).then(...) #### Taro.getBLEDeviceCharacteristics(OBJECT) -使用方式同 [`wx.getBLEDeviceCharacteristics`](https://developers.weixin.qq.com/miniprogram/dev/api/bluetooth.html#wxgetbledevicecharacteristicsobject),支持 `Promise` 化使用。 +使用方式同 [`wx.getBLEDeviceCharacteristics`](https://developers.weixin.qq.com/miniprogram/dev/api/device/bluetooth/wx.getBLEDeviceCharacteristics.html),支持 `Promise` 化使用。 **示例代码:** @@ -1597,7 +1597,7 @@ Taro.getBLEDeviceCharacteristics(params).then(...) #### Taro.readBLECharacteristicValue(OBJECT) -使用方式同 [`wx.readBLECharacteristicValue`](https://developers.weixin.qq.com/miniprogram/dev/api/bluetooth.html#wxreadblecharacteristicvalueobject),支持 `Promise` 化使用。 +使用方式同 [`wx.readBLECharacteristicValue`](https://developers.weixin.qq.com/miniprogram/dev/api/device/bluetooth/wx.readBLECharacteristicValue.html),支持 `Promise` 化使用。 **示例代码:** @@ -1609,7 +1609,7 @@ Taro.readBLECharacteristicValue(params).then(...) #### Taro.writeBLECharacteristicValue(OBJECT) -使用方式同 [`wx.writeBLECharacteristicValue`](https://developers.weixin.qq.com/miniprogram/dev/api/bluetooth.html#wxwriteblecharacteristicvalueobject),支持 `Promise` 化使用。 +使用方式同 [`wx.writeBLECharacteristicValue`](https://developers.weixin.qq.com/miniprogram/dev/api/device/bluetooth/wx.writeBLECharacteristicValue.html),支持 `Promise` 化使用。 **示例代码:** @@ -1621,7 +1621,7 @@ Taro.writeBLECharacteristicValue(params).then(...) #### Taro.notifyBLECharacteristicValueChange(OBJECT) -使用方式同 [`wx.notifyBLECharacteristicValueChange`](https://developers.weixin.qq.com/miniprogram/dev/api/bluetooth.html#wxnotifyblecharacteristicvaluechangeobject),支持 `Promise` 化使用。 +使用方式同 [`wx.notifyBLECharacteristicValueChange`](https://developers.weixin.qq.com/miniprogram/dev/api/device/bluetooth/wx.notifyBLECharacteristicValueChange.html),支持 `Promise` 化使用。 **示例代码:** @@ -1633,7 +1633,7 @@ Taro.notifyBLECharacteristicValueChange(params).then(...) #### Taro.onBLEConnectionStateChange(CALLBACK) -使用方式同 [`wx.onBLEConnectionStateChange`](https://developers.weixin.qq.com/miniprogram/dev/api/bluetooth.html#wxonbleconnectionstatechangecallback)。 +使用方式同 [`wx.onBLEConnectionStateChange`](https://developers.weixin.qq.com/miniprogram/dev/api/device/bluetooth/wx.onBLEConnectionStateChange.html)。 **示例代码:** @@ -1648,7 +1648,7 @@ Taro.onBLEConnectionStateChange(res => { #### Taro.onBLECharacteristicValueChange(CALLBACK) -使用方式同 [`wx.onBLECharacteristicValueChange`](https://developers.weixin.qq.com/miniprogram/dev/api/bluetooth.html#wxonblecharacteristicvaluechangecallback)。 +使用方式同 [`wx.onBLECharacteristicValueChange`](https://developers.weixin.qq.com/miniprogram/dev/api/device/bluetooth/wx.onBLECharacteristicValueChange.html)。 **示例代码:** @@ -1663,7 +1663,7 @@ Taro.onBLECharacteristicValueChange(res => { > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.openBluetoothAdapter | ✔️ | | | | Taro.closeBluetoothAdapter | ✔️ | | | @@ -1688,7 +1688,7 @@ Taro.onBLECharacteristicValueChange(res => { #### Taro.startBeaconDiscovery(OBJECT) -使用方式同 [`wx.startBeaconDiscovery`](https://developers.weixin.qq.com/miniprogram/dev/api/iBeacon.html#wxstartbeacondiscoveryobject),支持 `Promise` 化使用。 +使用方式同 [`wx.startBeaconDiscovery`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.startBeaconDiscovery.html),支持 `Promise` 化使用。 **示例代码:** @@ -1700,7 +1700,7 @@ Taro.startBeaconDiscovery(params).then(...) #### Taro.stopBeaconDiscovery(OBJECT) -使用方式同 [`wx.stopBeaconDiscovery`](https://developers.weixin.qq.com/miniprogram/dev/api/iBeacon.html#wxstopbeacondiscoveryobject),支持 `Promise` 化使用。 +使用方式同 [`wx.stopBeaconDiscovery`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.stopBeaconDiscovery.html),支持 `Promise` 化使用。 **示例代码:** @@ -1712,7 +1712,7 @@ Taro.stopBeaconDiscovery(params).then(...) #### Taro.getBeacons(OBJECT) -使用方式同 [`wx.getBeacons`](https://developers.weixin.qq.com/miniprogram/dev/api/iBeacon.html#wxgetbeaconsobject),支持 `Promise` 化使用。 +使用方式同 [`wx.getBeacons`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.getBeacons.html),支持 `Promise` 化使用。 **示例代码:** @@ -1724,15 +1724,15 @@ Taro.getBeacons(params).then(...) #### Taro.onBeaconUpdate(CALLBACK) -使用方式同 [`wx.onBeaconUpdate`](https://developers.weixin.qq.com/miniprogram/dev/api/iBeacon.html#wxonbeaconupdatecallback)。 +使用方式同 [`wx.onBeaconUpdate`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.onBeaconUpdate.html)。 #### Taro.onBeaconServiceChange(CALLBACK) -使用方式同 [`wx.onBeaconServiceChange`](https://developers.weixin.qq.com/miniprogram/dev/api/iBeacon.html#wxonbeaconservicechangecallback)。 +使用方式同 [`wx.onBeaconServiceChange`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.onBeaconServiceChange.html)。 > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.startBeaconDiscovery | ✔️ | | | | Taro.stopBeaconDiscovery | ✔️ | | | @@ -1744,7 +1744,7 @@ Taro.getBeacons(params).then(...) #### Taro.setScreenBrightness(OBJECT) -使用方式同 [`wx.setScreenBrightness`](https://developers.weixin.qq.com/miniprogram/dev/api/device.html#wxsetscreenbrightnessobject),支持 `Promise` 化使用。 +使用方式同 [`wx.setScreenBrightness`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.setScreenBrightness.html),支持 `Promise` 化使用。 **示例代码:** @@ -1756,7 +1756,7 @@ Taro.setScreenBrightness(params).then(...) #### Taro.getScreenBrightness(OBJECT) -使用方式同 [`wx.getScreenBrightness`](https://developers.weixin.qq.com/miniprogram/dev/api/device.html#wxgetscreenbrightnessobject),支持 `Promise` 化使用。 +使用方式同 [`wx.getScreenBrightness`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.getScreenBrightness.html),支持 `Promise` 化使用。 **示例代码:** @@ -1768,7 +1768,7 @@ Taro.getScreenBrightness(params).then(...) #### Taro.setKeepScreenOn(OBJECT) -使用方式同 [`wx.setKeepScreenOn`](https://developers.weixin.qq.com/miniprogram/dev/api/setKeepScreenOn.html),支持 `Promise` 化使用。 +使用方式同 [`wx.setKeepScreenOn`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.setKeepScreenOn.html),支持 `Promise` 化使用。 **示例代码:** @@ -1780,7 +1780,7 @@ Taro.setKeepScreenOn(params).then(...) > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.setScreenBrightness | ✔️ | | | | Taro.getScreenBrightness | ✔️ | | | @@ -1804,7 +1804,7 @@ Taro.onUserCaptureScreen(() => { > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.onUserCaptureScreen | ✔️ | | | @@ -1812,7 +1812,7 @@ Taro.onUserCaptureScreen(() => { #### Taro.vibrateLong(OBJECT) -使用方式同 [`wx.vibrateLong`](https://developers.weixin.qq.com/miniprogram/dev/api/device.html#wxvibratelongobject),支持 `Promise` 化使用。 +使用方式同 [`wx.vibrateLong`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.vibrateLong.html),支持 `Promise` 化使用。 **示例代码:** @@ -1824,7 +1824,7 @@ Taro.vibrateLong(params).then(...) #### Taro.vibrateShort(OBJECT) -使用方式同 [`wx.vibrateShort`](https://developers.weixin.qq.com/miniprogram/dev/api/device.html#wxvibrateshortobject),支持 `Promise` 化使用。 +使用方式同 [`wx.vibrateShort`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.vibrateShort.html),支持 `Promise` 化使用。 **示例代码:** @@ -1836,7 +1836,7 @@ Taro.vibrateShort(params).then(...) > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.vibrateLong | ✔️ | | ✔️ | | Taro.vibrateShort | ✔️ | | ✔️ | @@ -1845,7 +1845,7 @@ Taro.vibrateShort(params).then(...) #### Taro.addPhoneContact(OBJECT) -使用方式同 [`wx.addPhoneContact`](https://developers.weixin.qq.com/miniprogram/dev/api/phone-contact.html#wxaddphonecontactobject),支持 `Promise` 化使用。 +使用方式同 [`wx.addPhoneContact`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.addPhoneContact.html),支持 `Promise` 化使用。 **示例代码:** @@ -1857,7 +1857,7 @@ Taro.addPhoneContact(params).then(...) > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.addPhoneContact | ✔️ | | | @@ -1865,7 +1865,7 @@ Taro.addPhoneContact(params).then(...) #### Taro.getHCEState(OBJECT) -使用方式同 [`wx.getHCEState`](https://developers.weixin.qq.com/miniprogram/dev/api/nfc.html#wxgethcestateobject),支持 `Promise` 化使用。 +使用方式同 [`wx.getHCEState`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.getHCEState.html),支持 `Promise` 化使用。 **示例代码:** @@ -1877,7 +1877,7 @@ Taro.getHCEState(params).then(...) #### Taro.startHCE(OBJECT) -使用方式同 [`wx.startHCE`](https://developers.weixin.qq.com/miniprogram/dev/api/nfc.html#wxstarthceobject),支持 `Promise` 化使用。 +使用方式同 [`wx.startHCE`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.startHCE.html),支持 `Promise` 化使用。 **示例代码:** @@ -1889,7 +1889,7 @@ Taro.startHCE(params).then(...) #### Taro.stopHCE(OBJECT) -使用方式同 [`wx.stopHCE`](https://developers.weixin.qq.com/miniprogram/dev/api/nfc.html#wxstophceobject),支持 `Promise` 化使用。 +使用方式同 [`wx.stopHCE`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.stopHCE.html),支持 `Promise` 化使用。 **示例代码:** @@ -1901,11 +1901,11 @@ Taro.stopHCE(params).then(...) #### Taro.onHCEMessage(CALLBACK) -使用方式同 [`wx.onHCEMessage`](https://developers.weixin.qq.com/miniprogram/dev/api/nfc.html#wxonhcemessagecallback)。 +使用方式同 [`wx.onHCEMessage`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.onHCEMessage.html)。 #### Taro.sendHCEMessage(OBJECT) -使用方式同 [`wx.sendHCEMessage`](https://developers.weixin.qq.com/miniprogram/dev/api/nfc.html#wx.sendhcemessageobject),支持 `Promise` 化使用。 +使用方式同 [`wx.sendHCEMessage`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.sendHCEMessage.html),支持 `Promise` 化使用。 **示例代码:** @@ -1917,7 +1917,7 @@ Taro.sendHCEMessage(params).then(...) > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.getHCEState | ✔️ | | | | Taro.startHCE | ✔️ | | | @@ -1929,7 +1929,7 @@ Taro.sendHCEMessage(params).then(...) #### Taro.startWifi(OBJECT) -使用方式同 [`wx.startWifi`](https://developers.weixin.qq.com/miniprogram/dev/api/wifi.html#wxstartwifiobject),支持 `Promise` 化使用。 +使用方式同 [`wx.startWifi`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.startWifi.html),支持 `Promise` 化使用。 **示例代码:** @@ -1941,7 +1941,7 @@ Taro.startWifi(params).then(...) #### Taro.stopWifi(OBJECT) -使用方式同 [`wx.stopWifi`](https://developers.weixin.qq.com/miniprogram/dev/api/wifi.html#wxstopwifiobject),支持 `Promise` 化使用。 +使用方式同 [`wx.stopWifi`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.stopWifi.html),支持 `Promise` 化使用。 **示例代码:** @@ -1953,7 +1953,7 @@ Taro.stopWifi(params).then(...) #### Taro.connectWifi(OBJECT) -使用方式同 [`wx.connectWifi`](https://developers.weixin.qq.com/miniprogram/dev/api/wifi.html#wxconnectwifiobject),支持 `Promise` 化使用。 +使用方式同 [`wx.connectWifi`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.connectWifi.html),支持 `Promise` 化使用。 **示例代码:** @@ -1965,7 +1965,7 @@ Taro.connectWifi(params).then(...) #### Taro.getWifiList(OBJECT) -使用方式同 [`wx.getWifiList`](https://developers.weixin.qq.com/miniprogram/dev/api/wifi.html#wxgetwifilistobject),支持 `Promise` 化使用。 +使用方式同 [`wx.getWifiList`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.getWifiList.html),支持 `Promise` 化使用。 **示例代码:** @@ -1977,11 +1977,11 @@ Taro.getWifiList(params).then(...) #### Taro.onGetWifiList(CALLBACK) -使用方式同 [`wx.onGetWifiList`](https://developers.weixin.qq.com/miniprogram/dev/api/wifi.html#wxongetwifilistcallback)。 +使用方式同 [`wx.onGetWifiList`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.onGetWifiList.html)。 #### Taro.setWifiList(OBJECT) -使用方式同 [`wx.setWifiList`](https://developers.weixin.qq.com/miniprogram/dev/api/wifi.html#wxsetwifilistobject),支持 `Promise` 化使用。 +使用方式同 [`wx.setWifiList`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.setWifiList.html),支持 `Promise` 化使用。 **示例代码:** @@ -1993,11 +1993,11 @@ Taro.setWifiList(params).then(...) #### Taro.onWifiConnected(CALLBACK) -使用方式同 [`wx.onWifiConnected`](https://developers.weixin.qq.com/miniprogram/dev/api/wifi.html#wxonwificonnectedcallback)。 +使用方式同 [`wx.onWifiConnected`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.onWifiConnected.html)。 #### Taro.getConnectedWifi(OBJECT) -使用方式同 [`wx.getConnectedWifi`](https://developers.weixin.qq.com/miniprogram/dev/api/wifi.html#wxgetconnectedwifiobject),支持 `Promise` 化使用。 +使用方式同 [`wx.getConnectedWifi`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.getConnectedWifi.html),支持 `Promise` 化使用。 **示例代码:** @@ -2009,7 +2009,7 @@ Taro.getConnectedWifi(params).then(...) > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.startWifi | ✔️ | | | | Taro.stopWifi | ✔️ | | | @@ -2064,7 +2064,7 @@ Taro.showToast({ #### Taro.showLoading(OBJECT) -显示 loading 提示框, 需主动调用 Taro.hideLoading 才能关闭提示框,支持 `Promise` 化使用。 +显示 Loading 提示框, 需主动调用 Taro.hideLoading 才能关闭提示框,支持 `Promise` 化使用。 **OBJECT 参数说明:** @@ -2167,7 +2167,7 @@ Taro.showActionSheet({ > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.showToast | ✔️ | ✔️ | ✔️ | | Taro.showLoading | ✔️ | ✔️ | ✔️ | @@ -2180,7 +2180,7 @@ Taro.showActionSheet({ #### Taro.setNavigationBarTitle(OBJECT) -使用方式同 [`wx.setNavigationBarTitle`](https://developers.weixin.qq.com/miniprogram/dev/api/ui.html#wxsettopbartextobject),支持 `Promise` 化使用。 +使用方式同 [`wx.setNavigationBarTitle`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.setNavigationBarTitle.html),支持 `Promise` 化使用。 **示例代码:** @@ -2200,7 +2200,7 @@ Taro.setNavigationBarTitle(params).then(...) #### Taro.setNavigationBarColor(OBJECT) -使用方式同 [`wx.setNavigationBarColor`](https://developers.weixin.qq.com/miniprogram/dev/api/setNavigationBarColor.html),支持 `Promise` 化使用。 +使用方式同 [`wx.setNavigationBarColor`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.setNavigationBarColor.html),支持 `Promise` 化使用。 **示例代码:** @@ -2212,18 +2212,18 @@ Taro.setNavigationBarColor(params).then(...) > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.setNavigationBarTitle | ✔️ | |✔️ | | Taro.showNavigationBarLoading | ✔️ | | ✔️ | | Taro.hideNavigationBarLoading | ✔️ | | ✔️ | | Taro.setNavigationBarColor | ✔️ | | ✔️(不支持 animation 参数) | -### 设置 tabBar +### 设置 TabBar #### Taro.setTabBarBadge(OBJECT) -使用方式同 [`wx.setTabBarBadge`](https://developers.weixin.qq.com/miniprogram/dev/api/ui-tabbar.html#wxsettabbarbadgeobject),支持 `Promise` 化使用。 +使用方式同 [`wx.setTabBarBadge`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.setTabBarBadge.html),支持 `Promise` 化使用。 **示例代码:** @@ -2235,7 +2235,7 @@ Taro.setTabBarBadge(params).then(...) #### Taro.removeTabBarBadge(OBJECT) -使用方式同 [`wx.removeTabBarBadge`](https://developers.weixin.qq.com/miniprogram/dev/api/ui-tabbar.html#wxremovetabbarbadgeobject),支持 `Promise` 化使用。 +使用方式同 [`wx.removeTabBarBadge`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.removeTabBarBadge.html),支持 `Promise` 化使用。 **示例代码:** @@ -2247,7 +2247,7 @@ Taro.removeTabBarBadge(params).then(...) #### Taro.showTabBarRedDot(OBJECT) -使用方式同 [`wx.showTabBarRedDot`](https://developers.weixin.qq.com/miniprogram/dev/api/ui-tabbar.html#wxshowtabbarreddotobject),支持 `Promise` 化使用。 +使用方式同 [`wx.showTabBarRedDot`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.showTabBarRedDot.html),支持 `Promise` 化使用。 **示例代码:** @@ -2259,7 +2259,7 @@ Taro.showTabBarRedDot(params).then(...) #### Taro.hideTabBarRedDot(OBJECT) -使用方式同 [`wx.hideTabBarRedDot`](https://developers.weixin.qq.com/miniprogram/dev/api/ui-tabbar.html#wxhidetabbarreddotobject),支持 `Promise` 化使用。 +使用方式同 [`wx.hideTabBarRedDot`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.hideTabBarRedDot.html),支持 `Promise` 化使用。 **示例代码:** @@ -2271,7 +2271,7 @@ Taro.hideTabBarRedDot(params).then(...) #### Taro.setTabBarStyle(OBJECT) -使用方式同 [`wx.setTabBarStyle`](https://developers.weixin.qq.com/miniprogram/dev/api/ui-tabbar.html#wxsettabbarstyleobject),支持 `Promise` 化使用。 +使用方式同 [`wx.setTabBarStyle`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.setTabBarStyle.html),支持 `Promise` 化使用。 **示例代码:** @@ -2283,7 +2283,7 @@ Taro.setTabBarStyle(params).then(...) #### Taro.setTabBarItem(OBJECT) -使用方式同 [`wx.setTabBarItem`](https://developers.weixin.qq.com/miniprogram/dev/api/ui-tabbar.html#wxsettabbaritemobject),支持 `Promise` 化使用。 +使用方式同 [`wx.setTabBarItem`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.setTabBarItem.html),支持 `Promise` 化使用。 **示例代码:** @@ -2295,7 +2295,7 @@ Taro.setTabBarItem(params).then(...) #### Taro.showTabBar(OBJECT) -使用方式同 [`wx.showTabBar`](https://developers.weixin.qq.com/miniprogram/dev/api/ui-tabbar.html#wxshowtabbarobject),支持 `Promise` 化使用。 +使用方式同 [`wx.showTabBar`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.showTabBar.html),支持 `Promise` 化使用。 **示例代码:** @@ -2307,7 +2307,7 @@ Taro.showTabBar(params).then(...) #### Taro.hideTabBar(OBJECT) -使用方式同 [`wx.hideTabBar`](https://developers.weixin.qq.com/miniprogram/dev/api/ui-tabbar.html#wxhidetabbarobject),支持 `Promise` 化使用。 +使用方式同 [`wx.hideTabBar`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.hideTabBar.html),支持 `Promise` 化使用。 **示例代码:** @@ -2319,7 +2319,7 @@ Taro.hideTabBar(params).then(...) > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.setTabBarBadge | ✔️ | | | | Taro.removeTabBarBadge | ✔️ | | | @@ -2334,7 +2334,7 @@ Taro.hideTabBar(params).then(...) #### Taro.setTopBarText(OBJECT) -使用方式同 [`wx.setTopBarText`](https://developers.weixin.qq.com/miniprogram/dev/api/ui.html#wxsettopbartextobject),支持 `Promise` 化使用。 +使用方式同 [`wx.setTopBarText`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.setTopBarText.html),支持 `Promise` 化使用。 **示例代码:** @@ -2346,7 +2346,7 @@ Taro.setTopBarText(params).then(...) > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.setTopBarText | ✔️ | | | @@ -2354,7 +2354,7 @@ Taro.setTopBarText(params).then(...) #### Taro.navigateTo(OBJECT) -使用方式同 [`wx.navigateTo`](https://developers.weixin.qq.com/miniprogram/dev/api/ui-navigate.html),支持 `Promise` 化使用。 +使用方式同 [`wx.navigateTo`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.navigateTo.html),支持 `Promise` 化使用。 **示例代码:** @@ -2366,7 +2366,7 @@ Taro.navigateTo(params).then(...) #### Taro.redirectTo(OBJECT) -使用方式同 [`wx.redirectTo`](https://developers.weixin.qq.com/miniprogram/dev/api/ui-navigate.html#wxredirecttoobject),支持 `Promise` 化使用。 +使用方式同 [`wx.redirectTo`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.redirectTo.html),支持 `Promise` 化使用。 **示例代码:** @@ -2378,7 +2378,7 @@ Taro.redirectTo(params).then(...) #### Taro.switchTab(OBJECT) -使用方式同 [`wx.switchTab`](https://developers.weixin.qq.com/miniprogram/dev/api/ui-navigate.html#wxswitchtabobject),支持 `Promise` 化使用。 +使用方式同 [`wx.switchTab`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.switchTab.html),支持 `Promise` 化使用。 **示例代码:** @@ -2390,7 +2390,7 @@ Taro.switchTab(params).then(...) #### Taro.navigateBack(OBJECT) -使用方式同 [`wx.navigateBack`](https://developers.weixin.qq.com/miniprogram/dev/api/ui-navigate.html#wxnavigatebackobject)。 +使用方式同 [`wx.navigateBack`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.navigateBack.html)。 **示例代码:** @@ -2402,7 +2402,7 @@ Taro.navigateBack({ delta: 2 }) #### Taro.reLaunch(OBJECT) -使用方式同 [`wx.reLaunch`](https://developers.weixin.qq.com/miniprogram/dev/api/ui-navigate.html#wxrelaunchobject),支持 `Promise` 化使用。 +使用方式同 [`wx.reLaunch`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.reLaunch.html),支持 `Promise` 化使用。 **示例代码:** @@ -2414,7 +2414,7 @@ Taro.reLaunch(params).then(...) #### Taro.getCurrentPages(OBJECT) -使用方式同 [`getCurrentPages`](https://developers.weixin.qq.com/miniprogram/dev/api/ui-navigate.html#wxnavigateBack), 获取当前的页面栈,决定需要返回几层。 +使用方式同 [`getCurrentPages`](https://developers.weixin.qq.com/miniprogram/dev/framework/app-service/route.html#getcurrentpages), 获取当前的页面栈,决定需要返回几层。 **示例代码:** @@ -2426,7 +2426,7 @@ Taro.getCurrentPages().length > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.navigateTo | ✔️ | ✔️ | ✔️ | | Taro.redirectTo | ✔️ | ✔️ | ✔️ | @@ -2439,7 +2439,7 @@ Taro.getCurrentPages().length #### Taro.createAnimation(OBJECT) -使用方式同 [`wx.createAnimation`](https://developers.weixin.qq.com/miniprogram/dev/api/api-animation.html#wxcreateanimationobject)。 +使用方式同 [`wx.createAnimation`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.createAnimation.html)。 **示例代码:** @@ -2456,7 +2456,7 @@ const animation = Taro.createAnimation({ > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.createAnimation | ✔️ | ✔️ | | @@ -2464,7 +2464,7 @@ const animation = Taro.createAnimation({ #### Taro.pageScrollTo(OBJECT) -使用方式同 [`wx.pageScrollTo`](https://developers.weixin.qq.com/miniprogram/dev/api/scroll.html),支持 `Promise` 化使用。 +使用方式同 [`wx.pageScrollTo`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.pageScrollTo.html),支持 `Promise` 化使用。 **示例代码:** @@ -2476,7 +2476,7 @@ Taro.pageScrollTo(params).then(...) > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.pageScrollTo | ✔️ | | | @@ -2484,7 +2484,7 @@ Taro.pageScrollTo(params).then(...) #### Taro.createCanvasContext(canvasId, this.$scope) -使用方式同 [`wx.createCanvasContext`](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/create-canvas-context.html)。 +使用方式同 [`wx.createCanvasContext`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.createCanvasContext.html)。 #### Taro.createContext(不推荐使用) @@ -2496,7 +2496,7 @@ Taro.pageScrollTo(params).then(...) > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.createCanvasContext | ✔️ | | | | Taro.createContext | ✔️ | | | @@ -2506,7 +2506,7 @@ Taro.pageScrollTo(params).then(...) #### Taro.startPullDownRefresh(OBJECT) -使用方式同 [`wx.startPullDownRefresh`](https://developers.weixin.qq.com/miniprogram/dev/api/pulldown.html#wxstartpulldownrefresh),支持 `Promise` 化使用。 +使用方式同 [`wx.startPullDownRefresh`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.startPullDownRefresh.html),支持 `Promise` 化使用。 **示例代码:** @@ -2530,7 +2530,7 @@ Taro.stopPullDownRefresh() > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.startPullDownRefresh | ✔️ | | ✔️(无动画效果) | | Taro.stopPullDownRefresh | ✔️ | | ✔️ | @@ -2691,7 +2691,7 @@ Taro.createSelectorQuery() > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.createSelectorQuery | ✔️ | ✔️ | | | selectorQuery.in | ✔️ | ✔️ | | @@ -2709,7 +2709,7 @@ Taro.createSelectorQuery() #### Taro.getSetting(OBJECT) -使用方式同 [`wx.getSetting`](https://developers.weixin.qq.com/miniprogram/dev/api/open-api/setting/wx.getSetting.html),支持 `Promise` 化使用。 +使用方式同 [`wx.getSetting`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.getSetting.html),支持 `Promise` 化使用。 **示例代码:** @@ -2721,7 +2721,7 @@ Taro.getSetting(params).then(...) #### Taro.openSetting(OBJECT) -使用方式同 [`wx.openSetting`](https://developers.weixin.qq.com/miniprogram/dev/api/open-api/setting/wx.openSetting.html),支持 `Promise` 化使用。 +使用方式同 [`wx.openSetting`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.openSetting.html),支持 `Promise` 化使用。 **示例代码:** @@ -2733,7 +2733,7 @@ Taro.openSetting(params).then(...) > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.getSetting | ✔️ | | | | Taro.openSetting | ✔️ | | | @@ -2742,7 +2742,7 @@ Taro.openSetting(params).then(...) #### Taro.chooseAddress(OBJECT) -使用方式同 [`wx.chooseAddress`](https://developers.weixin.qq.com/miniprogram/dev/api/open-api/address/wx.chooseAddress.html),支持 `Promise` 化使用。 +使用方式同 [`wx.chooseAddress`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.chooseAddress.html),支持 `Promise` 化使用。 **示例代码:** @@ -2754,7 +2754,7 @@ Taro.chooseAddress(params).then(...) > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.chooseAddress | ✔️ | | | @@ -2762,7 +2762,7 @@ Taro.chooseAddress(params).then(...) #### Taro.authorize(OBJECT) -使用方式同 [`wx.authorize`](https://developers.weixin.qq.com/miniprogram/dev/api/open-api/authorize/wx.authorize.html),支持 `Promise` 化使用。 +使用方式同 [`wx.authorize`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.authorize.html),支持 `Promise` 化使用。 **示例代码:** @@ -2774,7 +2774,7 @@ Taro.authorize(params).then(...) > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.authorize | ✔️ | | | @@ -2782,7 +2782,7 @@ Taro.authorize(params).then(...) #### Taro.addCard(OBJECT) -使用方式同 [`wx.addCard`](https://developers.weixin.qq.com/miniprogram/dev/api/open-api/card/wx.addCard.html),支持 `Promise` 化使用。 +使用方式同 [`wx.addCard`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.addCard.html),支持 `Promise` 化使用。 **示例代码:** @@ -2794,7 +2794,7 @@ Taro.addCard(params).then(...) #### Taro.openCard(OBJECT) -使用方式同 [`wx.openCard`](https://developers.weixin.qq.com/miniprogram/dev/api/open-api/card/wx.openCard.html),支持 `Promise` 化使用。 +使用方式同 [`wx.openCard`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.openCard.html),支持 `Promise` 化使用。 **示例代码:** @@ -2806,7 +2806,7 @@ Taro.openCard(params).then(...) > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.addCard | ✔️ | | | | Taro.openCard | ✔️ | | | @@ -2815,7 +2815,7 @@ Taro.openCard(params).then(...) #### Taro.chooseInvoice(OBJECT) -使用方式同 [`wx.chooseInvoice`](https://developers.weixin.qq.com/miniprogram/dev/api/open-api/invoice/wx.chooseInvoice.html),支持 `Promise` 化使用。 +使用方式同 [`wx.chooseInvoice`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.chooseInvoice.html),支持 `Promise` 化使用。 **示例代码:** @@ -2827,7 +2827,7 @@ Taro.chooseInvoice(params).then(...) #### Taro.chooseInvoiceTitle(OBJECT) -使用方式同 [`wx.chooseInvoiceTitle`](https://developers.weixin.qq.com/miniprogram/dev/api/open-api/invoice/wx.chooseInvoiceTitle.html),支持 `Promise` 化使用。 +使用方式同 [`wx.chooseInvoiceTitle`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.chooseInvoiceTitle.html),支持 `Promise` 化使用。 **示例代码:** @@ -2839,7 +2839,7 @@ Taro.chooseInvoiceTitle(params).then(...) > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.chooseInvoice | ✔️ | | | | Taro.chooseInvoiceTitle | ✔️ | | | @@ -2860,7 +2860,7 @@ Taro.faceVerifyForPay(params).then(...) #### Taro.requestPayment(OBJECT) -使用方式同 [`wx.requestPayment`](https://developers.weixin.qq.com/miniprogram/dev/api/open-api/payment/wx.requestPayment.html),支持 `Promise` 化使用。 +使用方式同 [`wx.requestPayment`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.requestPayment.html),支持 `Promise` 化使用。 **示例代码:** @@ -2872,7 +2872,7 @@ Taro.requestPayment(params).then(...) > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.faceVerifyForPay | ✔️ | | | | Taro.requestPayment | ✔️ | | | @@ -2881,7 +2881,7 @@ Taro.requestPayment(params).then(...) #### Taro.getUserInfo(OBJECT) -使用方式同 [`wx.getUserInfo`](https://developers.weixin.qq.com/miniprogram/dev/api/open-api/user-info/wx.getUserInfo.html),支持 `Promise` 化使用。 +使用方式同 [`wx.getUserInfo`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.getUserInfo.html),支持 `Promise` 化使用。 **示例代码:** @@ -2893,7 +2893,7 @@ Taro.getUserInfo(params).then(...) > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.getUserInfo | ✔️ | | | @@ -2901,7 +2901,7 @@ Taro.getUserInfo(params).then(...) #### Taro.getWeRunData(OBJECT) -使用方式同 [`wx.getWeRunData`](https://developers.weixin.qq.com/miniprogram/dev/api/open-api/werun/wx.getWeRunData.html),支持 `Promise` 化使用。 +使用方式同 [`wx.getWeRunData`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.getWeRunData.html),支持 `Promise` 化使用。 **示例代码:** @@ -2913,7 +2913,7 @@ Taro.getWeRunData(params).then(...) > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.getWeRunData | ✔️ | | | @@ -2921,7 +2921,7 @@ Taro.getWeRunData(params).then(...) #### Taro.login(OBJECT) -使用方式同 [`wx.login`](https://developers.weixin.qq.com/miniprogram/dev/api/open-api/login/wx.login.html),支持 `Promise` 化使用。 +使用方式同 [`wx.login`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.login.html),支持 `Promise` 化使用。 **示例代码:** @@ -2933,7 +2933,7 @@ Taro.login(params).then(...) #### Taro.checkSession(OBJECT) -使用方式同 [`wx.checkSession`](https://developers.weixin.qq.com/miniprogram/dev/api/open-api/login/wx.checkSession.html),支持 `Promise` 化使用。 +使用方式同 [`wx.checkSession`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.checkSession.html),支持 `Promise` 化使用。 **示例代码:** @@ -2945,7 +2945,7 @@ Taro.checkSession(params).then(...) > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.login | ✔️ | | | | Taro.checkSession | ✔️ | | | @@ -2954,7 +2954,7 @@ Taro.checkSession(params).then(...) #### Taro.checkIsSoterEnrolledInDevice(OBJECT) -使用方式同 [`wx.checkIsSoterEnrolledInDevice`](https://developers.weixin.qq.com/miniprogram/dev/api/open-api/soter/wx.checkIsSoterEnrolledInDevice.html),支持 `Promise` 化使用。 +使用方式同 [`wx.checkIsSoterEnrolledInDevice`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.checkIsSoterEnrolledInDevice.html),支持 `Promise` 化使用。 **示例代码:** @@ -2966,7 +2966,7 @@ Taro.checkIsSoterEnrolledInDevice(params).then(...) #### Taro.checkIsSupportSoterAuthentication(OBJECT) -使用方式同 [`wx.checkIsSupportSoterAuthentication`](https://developers.weixin.qq.com/miniprogram/dev/api/open-api/soter/wx.checkIsSupportSoterAuthentication.html),支持 `Promise` 化使用。 +使用方式同 [`wx.checkIsSupportSoterAuthentication`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.checkIsSupportSoterAuthentication.html),支持 `Promise` 化使用。 **示例代码:** @@ -2978,7 +2978,7 @@ Taro.checkIsSupportSoterAuthentication(params).then(...) #### Taro.startSoterAuthentication(OBJECT) -使用方式同 [`wx.startSoterAuthentication`](https://developers.weixin.qq.com/miniprogram/dev/api/open-api/soter/wx.startSoterAuthentication.html),支持 `Promise` 化使用。 +使用方式同 [`wx.startSoterAuthentication`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.startSoterAuthentication.html),支持 `Promise` 化使用。 **示例代码:** @@ -2990,7 +2990,7 @@ Taro.startSoterAuthentication(params).then(...) > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.checkIsSoterEnrolledInDevice | ✔️ | | | | Taro.checkIsSupportSoterAuthentication | ✔️ | | | @@ -3000,7 +3000,7 @@ Taro.startSoterAuthentication(params).then(...) #### Taro.navigateBackMiniProgram(OBJECT) -使用方式同 [`wx.navigateBackMiniProgram`](https://developers.weixin.qq.com/miniprogram/dev/api/open-api/miniprogram-navigate/wx.navigateBackMiniProgram.html),支持 `Promise` 化使用。 +使用方式同 [`wx.navigateBackMiniProgram`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.navigateBackMiniProgram.html),支持 `Promise` 化使用。 **示例代码:** @@ -3012,7 +3012,7 @@ Taro.navigateBackMiniProgram(params).then(...) #### Taro.navigateToMiniProgram(OBJECT) -使用方式同 [`wx.navigateToMiniProgram`](https://developers.weixin.qq.com/miniprogram/dev/api/open-api/miniprogram-navigate/wx.navigateToMiniProgram.html),支持 `Promise` 化使用。 +使用方式同 [`wx.navigateToMiniProgram`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.navigateToMiniProgram.html),支持 `Promise` 化使用。 **示例代码:** @@ -3024,7 +3024,7 @@ Taro.navigateToMiniProgram(params).then(...) > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.navigateBackMiniProgram | ✔️ | | | | Taro.navigateToMiniProgram | ✔️ | | | @@ -3033,7 +3033,7 @@ Taro.navigateToMiniProgram(params).then(...) #### Taro.getUpdateManager() -使用方式同 [`wx.getUpdateManager`](https://developers.weixin.qq.com/miniprogram/dev/api/update/wx.getUpdateManager.html)。 +使用方式同 [`wx.getUpdateManager`](https://developers.weixin.qq.com/miniprogram/dev/api/wx.getUpdateManager.html)。 **示例代码:** @@ -3045,7 +3045,7 @@ Taro.getUpdateManager() > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.getUpdateManager | ✔️ | | | @@ -3079,8 +3079,7 @@ const arrayBuffer = Taro.base64ToArrayBuffer(base64) > API 支持度 -| API | 微信小程序 | H5 | ReactNative | +| API | 微信小程序 | H5 | React Native | | :-: | :-: | :-: | :-: | | Taro.arrayBufferToBase64 | ✔️ | ✔️ | | | Taro.base64ToArrayBuffer | ✔️ | ✔️ | | -