我有一个“选择”框,我要使用从查询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]%>”