egg-mongoose 的model沒有掛載到ctx上下文

在controller中ctx上下文中,ctx.model爲undefined通常經過如下兩個方面排查,要麼是插件沒有配置或者配置錯誤,要麼就是數據庫鏈接鏈接存在問題,致使model沒有掛載到ctx上下文上mongodb

  1. 要在plugin.js中配置egg-mongoose插件
mongoose : {
    enable: true,
    package: 'egg-mongoose',
  }
  1. 在config.default.js中配置mongo鏈接的相關參數
mongoose:{
      client:{
        url:'mongodb://localhost:27017/test',
        options:{}
      }
    },
相關文章
相關標籤/搜索