我在webview中遇到了无法在iOS上设置Cookie的问题。
在网页浏览中实施第三方支付网关当用户被重定向到结果页面时,我收到一条消息,说明"未在浏览器中启用Cookie"
那么如何在iOS上的webview中启用cookie?
答案 0 :(得分:1)
在反应原生webview cookie是默认启用时,请检查以下链接https://facebook.github.io/react-native/docs/webview.html
thirdPartyCookiesEnabled?: bool
Boolean value to enable third party cookies in the WebView.
Used on Android Lollipop and above only as third party cookies are enabled by
default on Android Kitkat and below and on iOS. The default value is true.
<WebView
source={{uri: 'https://github.com/facebook/react-native'}}
style={{marginTop: 20}}
thirdPartyCookiesEnabled : true
/>
答案 1 :(得分:0)
在webView中使用属性 sharedCookiesEnabled = {true} 。 它在myCase中工作