React Native WebView 上的 ERR_UNKNOWN_URL_SCHEME

noo*_*per 3 mobile android webview ios react-native

我正在开发一个带有react-native-webview 的应用程序。

当我点击链接时

<a href="sms:888888&body=Test Message">Click here</a>
Run Code Online (Sandbox Code Playgroud)

我收到错误 err_unknown_url_scheme。

谢谢

小智 5

我收到有关“mailto: 和 tel: 链接在 webview 中不起作用”的错误,对于我的情况,修复方法是在 webview 中添加此属性:

 <WebView
 // other props here
  originWhitelist={['http://*', 'https://*', 'intent://*']} 
 />
Run Code Online (Sandbox Code Playgroud)