节点,Express,Postgres将数据库值返回到表中

时间:2018-11-12 06:08:47

标签: node.js postgresql express pg-promise

几个小时以来,我一直在学习NodeJS,Express和Postgres SQL CRUD应用程序,现在我陷入了困境。我只想将查询数据返回到表中。 我有一个像这样的控制器功能:

exports.dynamicadd =  function(req, res){
var data = db.any("SELECT * FROM students")
        .then(function(data) {

        })
        .catch(function(error) {
            console.log('ERROR:', error);
        });
    res.redirect('/');
}

在这里,我想将数据值返回到下表数据中。

  <div class="table-responsive">          
  <table class="table">
    <thead>
      <tr>
        <th>#</th>
        <th>Name</th>
        <th>Gender</th>
        <th>DOB</th>
      </tr>
    </thead>
    <tbody>
       //here is where I want to return
       <td></td>
       <td></td>
       <td></td>
       <td></td>  
    </tbody>
  </table>
  </div>

帮帮我。谢谢。

0 个答案:

没有答案