图像未在expo React Native中加载

问题描述 投票:0回答:1
<Image
      source={{
         uri: 'correct-url-of-my-image',
         headers: {
            Accept: 'image/*'
         }
      }}
      style={{ width: 400, height: 140 }}
      contentFit="contain"
      className="z-10"
      onLoadStart={() => {
          console.log('Image loading started');
      }}
      onError={e => {
          console.log('Image loading failed', e);
      }}
      onLoadEnd={() => {
          console.log('Image loading ended');
      }}
/>

一切正确,但图像不可见。我还检查了 URL,它工作正常,我还尝试将图像保留在资产目录中并尝试访问它,但仍然无法工作。

reactjs react-native expo
1个回答
0
投票

图像格式为.svg,但不起作用。然后我尝试从figma导出.png格式,然后我尝试了,效果很好,之后图像就可见了。

© www.soinside.com 2019 - 2024. All rights reserved.