我遇到了React Native,Webview和cookies的问题
所以,我有一个Webview,源代码是html页面的一些javascript
Javascript尝试使用document.cookie
获取Cookie,但它在android中为空
它适用于IOS。
我的网页浏览:
<View style={styles.container}>
<WebView
javaScriptEnabled={true}
domStorageEnabled={true}
thirdPartyCookiesEnabled={true}
allowUniversalAccessFromFileURLs={true}
mixedContentMode={'always'}
source={{uri:"https://mywebsite.com/"}}
/>
</View>
我的javascript:
alert(document.cookie);
所以在IOS上,我有cookie,在android上,我什么都没有......
你知道为什么吗?