0
我想表明從外部URL中的照片:圖像組件URI跨起源
<Image
style={styles /* Some React Native styling */}
source={{uri: 'http://facebook.github.io/react/img/logo_og.png'}}
/>
,但我得到了以下錯誤:
的XMLHttpRequest無法加載...
我想表明從外部URL中的照片:圖像組件URI跨起源
<Image
style={styles /* Some React Native styling */}
source={{uri: 'http://facebook.github.io/react/img/logo_og.png'}}
/>
,但我得到了以下錯誤:
的XMLHttpRequest無法加載...
您需要指定圖像的尺寸:
<Image source={{uri: 'https://facebook.github.io/react/img/logo_og.png'}}
style={{width: 1, height: 1}} />
這是在文檔中引用的:
https://facebook.github.io/react-vr/docs/images.html
https://facebook.github.io/react-native/docs/images.html#network-images
那麼你的'Image'成分是什麼樣子? –
@PaulFitzgerald它是本地react-vr圖像組件,上面的代碼是react-vr文檔的示例。但它不起作用 – Sepehr
道歉,只是注意到。嘗試在URL –