How to configure two mongo databases in yii2?
If configured like this, an error will be reported in the model
But now the project needs to connect to two databases. How should it be configured? ? ?
The default project uses:Yii::$app->getDb($dbId);对于mongodb来说,他默认的第一个id应该是:mongodb;但是你是设置成了:"mongo_dsp"和"mongo_dmp"所以会出现这个问题,想要实现就可以在Model构造函数里面使用:Yii::$app->getDb("mongo_dsp");to achieve the effect!
Yii::$app->getDb($dbId);
mongodb
mongodb;
Yii::$app->getDb("mongo_dsp");
The default project uses:
Yii::$app->getDb($dbId);
对于
mongodb
来说,他默认的第一个id应该是:mongodb;
但是你是设置成了:"mongo_dsp"和"mongo_dmp"所以会出现这个问题,想要实现就可以在Model构造函数里面使用:
Yii::$app->getDb("mongo_dsp");
to achieve the effect!