From ced2dcfd0057d4653f05a198db15b4b1835251c4 Mon Sep 17 00:00:00 2001 From: Pines-Cheng Date: Mon, 7 Jan 2019 20:17:58 +0800 Subject: [PATCH] =?UTF-8?q?docs(RN):=20=E6=B7=BB=E5=8A=A0=20openUrl=20?= =?UTF-8?q?=E7=9A=84=E6=96=87=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/before-dev-remind.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/before-dev-remind.md b/docs/before-dev-remind.md index 8f4a4b24585c..44348f856b1e 100644 --- a/docs/before-dev-remind.md +++ b/docs/before-dev-remind.md @@ -73,6 +73,12 @@ border{Top,Right,Bottom,Left} 的简写(shorthands)不支持,因为 `borde #### React Native 不支持 background-image ,有什么解决办法吗? 使用 `Image 组件`,配合 Flex 布局,基本可以实现你的大部分需求。阅读一下这篇文章:[Background Images in React Native](https://thekevinscott.com/background-images-in-react-native/),有助于你理解。 +### 页面怎样设置高度 100% +RN 端页面默认 `disableScroll` 为 `true`,要想设置高度 100% ,得先在页面配置:`disableScroll :false`。 + +### 可以使用微信/支付宝支付吗? +由于 Expo 不支持原生的 SDK,所以无法通过集成原生的 SDK 的方式使用微信/支付宝支付。不过 RN 端提供了 `Taro.openUrl({url:''})`的 API 打开手机浏览器,然后走 [手机网站支付](https://docs.open.alipay.com/203/105288/) 的流程。 + ### 其他注意事项 1. **运行时** 报缺少包,需要要在 `.rn_temp` 目录里面安装。