Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个Model1完全没有连接的模型,Model2但是因为Model2我需要一些数据,所以我Controller1需要访问Model2
Model1
Model2
Controller1
这可以用蛋糕吗?如果是这样怎么办?
您的问题不清楚,但假设您可以从 Controller 获取数据,只需使用:
// Model1sController $this->loadModel('Model2'); $this->Model2->find('all');
将您的模型添加到控制器的 $uses 属性中。然后你可以通过 $this->MyModel 从控制器访问模型