データベースからすべてのモデルを取得し、次のコードを使用してページに表示することに問題はありません。
index: function(req, res) {
Applicant.find(function(err, applicants) {
if (err) {
return console.log(err);
}else{
res.view({
apps: applicants
});
}
});
}
しかし、モデルを 1 つだけ取得して表示しようとすると、ブラウザーがロード中にスタックします。これは、1 つのモデルのみをプルするために使用するコードです。
display: function(req, res) {
Applicant.find().where({id: 2}).done(function(err, appl) {
if (err) {
return console.log('HAI');
}else{
res.view({
applicant: appl
});
}
});
}