显示特定mongoDB文档的内容

时间:2017-10-08 12:57:05

标签: javascript node.js mongodb

我正在尝试将mLab中的馆藏文档的内容显示到我的网络应用程序中。下面是我必须访问主题页面的代码。我可以访问主题页面,其中包含出现在我的搜索栏中的文档ID,但没有任何内容出现。任何反馈将不胜感激。谢谢。

:/bin# busybox

以下是我在subject.hbs文件中使用的代码

// /route for subjects
router.get('/subject/:id',function (req,res,next) {
    var messages = req.flash('error');
    console.log(classmodule);
    res.render('user/Subject',{title: classmodule.title,description:classmodule.description});
});

这是我用于subject.js模型的代码,

var mongoose = require('mongoose');     var Schema = mongoose.Schema;

{{> header}}

<ul class="breadcrumb">
  <li><a href='profile'>Home</a></li>
  <li><a href='subject'>Subject</a></li>
</ul>
                    <h2>{{title}}</h2>
                    <h3>{{description}}</h3>
{{> footer}}

0 个答案:

没有答案