【发布时间】:2019-02-21 05:39:40
【问题描述】:
这是我的错误:
TypeError: Cannot read property 'metadata' of null
at gfs.files.findOne (M:\FinalProject\Commerce\routes\index.js:187:13)
at result (M:\FinalProject\Commerce\node_modules\mongodb\lib\utils.js:414:17)
这是我的代码:
router.get('/:filename', (req,res) => {
const img = req.params.filename; // Filename
gfs.files.findOne({filename: img}, (req,file) =>{
if(file.metadata.brand=="Mango"){
const brand = "Mango";
displayOne(brand);
}
else if(file.metadata.brand=="Cocotail")
{
const brand = "Cocotail";
displayOne(brand);
}
else if(file.metadata.brand==null)
{
console.log("Null");
}
function displayOne(brand)
{
gfs.files.find({'metadata.brand': brand }).toArray((err,files)=>{
if(!file || file.length ===0)
{
return res.status(404).json({
err: 'No files exist'
});
}
if(file.contentType === 'image/jpeg' || file.contentType === 'image/png')
{
file.isImage = true;
}
else
{
res.status(404).json({
err: 'Not an image'
});
file.isImage = false;
}
res.render('singleproduct',{
file:file,
relatedProduct:files, // Related Products
isSearch:0
});
});
}
});
});
请给我有关此错误的任何想法。我无法找出此错误的主要原因是什么。我在谷歌上搜索过,但没有合适的解决方案。______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
谢谢
【问题讨论】:
-
第 187 行是哪一行?直接的问题可能是
file.metadata中的file为空,这意味着(我认为)findOne()没有找到... -
if(file.metadata.brand=="Mango"){
-
你能推荐我如何在用户点击产品时显示相关产品吗?这段代码主要是为了获取相关的商品项目
-
这意味着
file是null。当变量file被填充时,错误发生在此行之前的某处。