从nodejs中的查询SQL添加值<option>

时间:2018-11-23 19:28:55

标签: html node.js sql-server

我有一个“选择”框,我要使用从查询sql中提取的值进行收费。

我正在尝试以下操作:

.csproj

bajatel.html

router.js file:
  app.get('/view/bajatel.html', function(req, res, next) {
       request.query('select NLineas from tb_lineas', (err, rows) => {
        if(err) throw err;
           console.log(rows)
        // Pass the DB result to the templates
        res.render('/view/bajatel.html', {Valuelist: rows})
       });

,但是在选择框中仅显示值“ <%= Valuelist [i]%>”

0 个答案:

没有答案