提交 59a0b9fb 编写于 作者: D DCloud_LXH

feat: alpha 文档

上级 939f6888
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
* 基础 * 基础
* [环境变量](env.md) * [环境变量](env.md)
* [事件总线](event-bus.md) * [事件总线](event-bus.md)
* [Base64](base64.md)
* [拦截器](interceptor.md) * [拦截器](interceptor.md)
* [启动](launch.md) * [启动](launch.md)
* [退出应用](exit.md) * [退出应用](exit.md)
...@@ -15,7 +16,7 @@ ...@@ -15,7 +16,7 @@
* [getPerformance](get-performance.md) * [getPerformance](get-performance.md)
* 页面和路由 * 页面和路由
* [页面跳转](navigator.md) * [页面跳转](navigator.md)
* [弹框页面](dialog-page.md) * [dialogPage](dialog-page.md)
* [设置导航条颜色](set-navigation-bar-color.md) * [设置导航条颜色](set-navigation-bar-color.md)
* [设置导航条标题](set-navigation-bar-title.md) * [设置导航条标题](set-navigation-bar-title.md)
* [设置tabBar](set-tab-bar.md) * [设置tabBar](set-tab-bar.md)
...@@ -26,6 +27,7 @@ ...@@ -26,6 +27,7 @@
* [通过 id 获取 element](get-element-by-id.md) * [通过 id 获取 element](get-element-by-id.md)
* [创建 SelectorQuery 实例](create-selector-query.md) * [创建 SelectorQuery 实例](create-selector-query.md)
* 界面 * 界面
* [节点布局相交状态](create-intersection-observer.md)
* [弹出操作菜单](show-action-sheet.md) * [弹出操作菜单](show-action-sheet.md)
* [显示模态弹窗](show-modal.md) * [显示模态弹窗](show-modal.md)
* [显示 loading 提示框](show-loading.md) * [显示 loading 提示框](show-loading.md)
...@@ -50,6 +52,7 @@ ...@@ -50,6 +52,7 @@
* [安装 APK](install-apk.md) * [安装 APK](install-apk.md)
* [获取电池电量信息](get-battery-info.md) * [获取电池电量信息](get-battery-info.md)
* [打电话](make-phone-call.md) * [打电话](make-phone-call.md)
* [剪切板](clipboard.md)
* [罗盘](compass.md) * [罗盘](compass.md)
* [wifi](wifi.md) * [wifi](wifi.md)
* [内存](memory.md) * [内存](memory.md)
...@@ -85,6 +88,7 @@ ...@@ -85,6 +88,7 @@
* 广告 * 广告
* [开屏广告manifest配置](https://doc.dcloud.net.cn/uni-app-x/collocation/manifest-modules.html#uni-ad) * [开屏广告manifest配置](https://doc.dcloud.net.cn/uni-app-x/collocation/manifest-modules.html#uni-ad)
* [激励视频广告](create-rewarded-video-ad.md) * [激励视频广告](create-rewarded-video-ad.md)
* [插屏广告](create-interstitial-ad.md)
* 支付 * 支付
* [支付(requestPayment)](request-payment.md) * [支付(requestPayment)](request-payment.md)
* [虚拟支付(requestVirtualPayment)](virtual-payment.md) * [虚拟支付(requestVirtualPayment)](virtual-payment.md)
......
## uni.getClipboardData(options) @getclipboarddata
<!-- UTSAPIJSON.getClipboardData.description -->
<!-- UTSAPIJSON.getClipboardData.compatibility -->
<!-- UTSAPIJSON.getClipboardData.param -->
<!-- UTSAPIJSON.getClipboardData.returnValue -->
<!-- UTSAPIJSON.getClipboardData.example -->
<!-- UTSAPIJSON.getClipboardData.tutorial -->
## uni.setClipboardData(options) @setclipboarddata
<!-- UTSAPIJSON.setClipboardData.description -->
<!-- UTSAPIJSON.setClipboardData.compatibility -->
<!-- UTSAPIJSON.setClipboardData.param -->
<!-- UTSAPIJSON.setClipboardData.returnValue -->
<!-- UTSAPIJSON.setClipboardData.example -->
<!-- UTSAPIJSON.setClipboardData.tutorial -->
<!-- UTSAPIJSON.clipboard.example -->
<!-- UTSAPIJSON.general_type.name -->
<!-- UTSAPIJSON.general_type.param -->
\ No newline at end of file
## uni.createIntersectionObserver(component, options) @createintersectionobserver
<!-- UTSAPIJSON.createIntersectionObserver.description -->
<!-- UTSAPIJSON.createIntersectionObserver.compatibility -->
<!-- UTSAPIJSON.createIntersectionObserver.param -->
<!-- UTSAPIJSON.createIntersectionObserver.returnValue -->
<!-- UTSAPIJSON.createIntersectionObserver.example -->
<!-- UTSAPIJSON.createIntersectionObserver.tutorial -->
<!-- UTSAPIJSON.createIntersectionObserver.example -->
<!-- UTSAPIJSON.general_type.name -->
<!-- UTSAPIJSON.general_type.param -->
\ No newline at end of file
## uni.createInterstitialAd(option) @createinterstitialad
<!-- UTSAPIJSON.createInterstitialAd.description -->
<!-- UTSAPIJSON.createInterstitialAd.compatibility -->
<!-- UTSAPIJSON.createInterstitialAd.param -->
<!-- UTSAPIJSON.createInterstitialAd.returnValue -->
<!-- UTSAPIJSON.createInterstitialAd.example -->
<!-- UTSAPIJSON.createInterstitialAd.tutorial -->
<!-- UTSAPIJSON.createInterstitialAd.example -->
<!-- UTSAPIJSON.general_type.name -->
<!-- UTSAPIJSON.general_type.param -->
\ No newline at end of file
...@@ -53,10 +53,13 @@ ...@@ -53,10 +53,13 @@
* 媒体组件 * 媒体组件
* [image | 图片](image.md) * [image | 图片](image.md)
* [video | 视频](video.md) * [video | 视频](video.md)
<!-- * [animation-view | Lottie动画](animation-view.md) -->
* 地图 * 地图
* [map | 地图](map.md) * [map | 地图](map.md)
* 画布 * 画布
* [canvas | 画布](canvas.md) * [canvas | 画布](canvas.md)
<!-- * 广告
* [ad | 信息流广告](ad.md) -->
* 网页 * 网页
* [web-view](web-view.md) * [web-view](web-view.md)
* 页面属性配置节点 * 页面属性配置节点
......
## ad
<!-- UTSCOMJSON.ad.description -->
<!-- UTSCOMJSON.ad.compatibility -->
<!-- UTSCOMJSON.ad.attribute -->
<!-- UTSCOMJSON.ad.event -->
<!-- UTSCOMJSON.ad.component_type -->
<!-- UTSCOMJSON.ad.children -->
<!-- UTSCOMJSON.ad.example -->
<!-- UTSCOMJSON.ad.reference -->
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册