nodejs mongodb 一个页面使用多表问题
发布于 9 年前 作者 yundian 3913 次浏览 最后一次编辑是 8 年前 来自 问答

用nodejs 和mongodb相连接,一个页面需要应用多个表 express模板 例如 首页要用的菜单表,新闻表,留言表里面的信息。 如下 index.js MenuList.getAll(null,function(err,MenuLists){ if(err){ MenuLists=[]; } res.render(‘index’,{ title:‘首页’, MenuLists: MenuLists, }); }); }); 页面中 <% MenuLists.forEach(function (menuLists,index) { %> <li></li> <% }) %> 怎么引用新闻等表,和里面内容???

8 回复

有大神回答吗?给个解决方法吧!!!

你console.log一下menuLists里面的内容(如果你查找成功了),你就知道怎么引用里面的东西了

@jayfen2016 我可以引用一张表,但是这个页面还有其他需要引用的表,就是一个页面要引用多个

没人遇到吗?比较急呀,给点建议也是好的

@yundian 用到其它表的数据了就查其它表跟menuList一样返到页面不就好了

来自酷炫的 CNodeMD

@liygheart 你好能详细说明一下吗?或给下例子

不嫌麻烦,可以用这种写法

MenuList.getAll(null, function(err, menuList){
  NewsList.getAll(null, function(err, newsList){
    MessageList.getAll(null, function(err, messageList) {
      res.render("index", {
        menuList: menuList,
        newsList: newsList,
        messageList: messageList
      })
    })
  })
})

嫌麻烦,可以用async

回到顶部