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.
假设mysql数据库的表名是' admin',控制器名是' userscontroller',模型名是' user'。
admin
userscontroller
user
如何访问cakephpadmin中表“ ”中的数据?请用代码解释。
这可能不是最好的解决方案,但我要做的是专门为该表创建一个名为“Admin”的新模型,然后在 UserController 中调用它,例如:
在用户控制器中
$this->loadModel('Admin'); $this->Admin->find('all');
在管理模型中
$useTable = 'admin';