无法阅读属性" updates_title'明确定义的未定义数据

时间:2017-09-12 12:08:16

标签: javascript node.js express pug

我收到了未定义数据的错误。

  抛出错误; //重新抛出非MySQL错误

     

TypeError:无法读取属性" updates_title'未定义的

导致问题的我的node.js代码:

app.get("/aktualnosci/:update_id", function(req, res){
   console.log(req.params.update_id);
   con.query("SELECT * FROM tbl_updates WHERE updates_id = ('"+req.params.update_id+"')" , function(err, result, fields){
     console.log(result[0]);
     res.render('aktualnosci', {title: result[0].updates_title, text: result[0].updates_title});
   });   
});

玉代码:

.container
   hr
   .row
      .col-lg-6
         h1 #{title}
   .row
      .col-lg-12
         p #{text}

我还收到了数据库的控制台记录,我从数据库接收

RowDataPacket {
updates_id: 4,
updates_title: 'Czwarty post, !!!',
updates_text:'LOREMLOREMLOREMLOREMLOREMLOREMLOREMLOREMLOREMLOREMLOREMLOREMLOREMLOREMLOREMLOREMLOREMLORLOREMLOREMLOREMLOREMLOREM' }

问题在于,当清楚地显示数据未定义时,错误正在发生。

0 个答案:

没有答案