我想比较我的item.adminUse
哪个是“真”或“假”,哪个没有给出正确的输出
HTML
{% for item in data%}
<tr>
{%if item.adminUse%}
<td >{{item.id}}</td>
<td >{{item.firstName}}</td>
<td >{{item.adminUse}}</td>
{%endif%}
{%endfor %}
脚本
exports.index = function(req, res){
db('stdnt').find().done(function (err, models) {
if ( err )
console.log("Error in Index of Student:"+err);
else
console.log(models)
res.render( 'stdnt/index',{data:models});//, { title: 'CRUD in Node', data: models });
});
};
上面是呈现该链接并发送该数据“模型”的控制器