React native - 使用javascript进行Webview - document.cookie

时间:2018-04-30 16:42:00

标签: javascript android react-native cookies webview

我遇到了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上,我什么都没有......

你知道为什么吗?

0 个答案:

没有答案