'DB_CONFIG_MONGO'=>'mongodb://localhost:27017/test'TestModelclass TestModel extends MongoModel {
protected $connection = 'DB_CONFIG_MONGO';
}Action$Model = new MongoModel("Test");
$Model->field("title")->limit(8)->select();都是按照文档来的。可是老出错错误信息:Call to undefined method DbMysql::switchCollection()
请问是哪里错了?
最佳答案