我实际上是在制作一个电子商务应用程序,并使用Nodejs作为后端,对Mysql数据库使用sequelize作为ORM,对前端使用React-native(RN)。我的问题是,我在前端既没有得到任何图像,也没有任何错误,但是当我在浏览器中打开图像时,它实际上已经打开,还有一件事,我从本地主机得到响应...这些是我的后端文件首先。
models / productImage.js
module.exports = (sequelize, DataTypes) => {
const ProductImage = sequelize.define('ProductImage', {
productId: DataTypes.INTEGER,
fileName: DataTypes.STRING
}, {});
ProductImage.associate = function (models) {
ProductImage.belongsTo(models.Product, {
onDelete: 'cascade'
});
};
return ProductImage;
};
routes / productImage.js
let Image = new ProductImage({
productId: req.body.productId,
fileName: req.file.filename
})
if (Image.fileName) {
Image.fileName = 'http://127.0.0.1:4000/static/' + Image.fileName;
}
await Image.save();
res.send(Image)
Response
[
{
"id": 1,
"name": "Iphone",
"slug": "iphone",
"price": "100000",
"color": "blue",
"isActive": 1,
"createdAt": "2019-08-30T08:59:36.000Z",
"updatedAt": "2019-08-30T08:59:36.000Z",
"images": [
{
"fileName": "http://127.0.0.1:4000/static/images-1567155576836.jpg"
},
{
"fileName": "http://127.0.0.1:4000/static/images-1567155783680.jpg"
}
]
}
]
App.js
app.use('/static', express.static('public'))
前端零件(RN)
state = {
products: []
}
async componentDidMount() {
let products = await API.home();
this.setState({
products: products
})
}
<FlatList
data={this.state.products}
renderItem={({ item }) => (
<View>
<Text>{item.name}</Text>
<Text>{item.price}</Text>
<Image style={{ width: 400, height: 400 }}
resizeMode={'contain'}
source={{ uri: item.images[0].fileName }} />
</View>
)}
keyExtractor={item => item.id.toString()}
/>
答案 0 :(得分:1)
谢谢你们的回复,但我自己弄清楚了。 IP地址问题。当我将IP地址设置为与使用的IP地址相同时 将请求发送到获取请求中的后端,它起作用。换句话说,在image.fileName中而不是设置随机IP。我设置主机IP地址。
我将这个答案留给将来需要帮助的人 问题...
Cheerio