我制作了一个 API,它使用 express 和 multer 将图片上传到项目内的单独文件夹中。我将文件名保存在数据库中,即 postgres,以便我可以附加路径的其余部分并检索图像。但如果我使用 source=uri{{image.}} 则不会显示任何内容。
<Image
source={{uri: image,}}
resizeMode="cover"
style={styles.button}>
</Image>
我也尝试使用 source={required('')},它工作正常,但我必须为它硬编码路径。 我使用 react-native 作为前端,node js 作为服务器,express 中间件,postgres 作为 db