我使用MySQL节点模块,我有循环,我将从我的数据库中获取一些东西。当所有文件都被标记为使用= 1时,我将遇到此错误,因为没有更多的东西可以获得:)
Cannot read property 'sample_column' of undefined
一切都很好,这应该是它应该如何,但我需要在错误之前编写一个console.log但是它没有任何想法?
var query = "Select * from sample.logs where used = '0' order by id asc LIMIT 1"
connection.query(query, function (error, results, fields){
if(error) {
console.log('HELLO PLEASE SEE ME :)')
}
else{
// ..
}
})
请注意我使用Electron,我只在Inspector中看到console.log,就像你在每个网站一样。我只收到红色错误代码!
答案 0 :(得分:0)
@Michael给出了答案 在所有标记为used = 1之后我们没有输入如果我们输入错误而不是else区域,如果我要在else区域的开头输入console.log,我可以再次看到它!