我试图在 react-native 组件的 IMAGE 标记中为“require”传递一个道具。但是,它显示错误“服务器代码错误 500”。如果我使用 URI 传递链接,它与道具一起使用。
在职的 :
<Image
style={{ width: 70, height: 61 }}
source={{ uri: imgCode }}
/>
imgCode="https://i.imgur.com/edgLzLO.png"
需要修复:
<Image
style={{ width: 70, height: 61 }}
source={require('./images/header_arrow.png')}
/>
imgCode="./images/batter_logo.png"