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.
是否可以在每个 CakePHP 页面上加载某些内容而不必在每个模型的每个操作中添加请求?只需将它添加到某个地方,所有页面都完成了吗?
首先,模型没有动作。控制器有动作。
您可以通过使用在所有控制器中加载数据AppController::beforeFilter()
AppController::beforeFilter()
class AppController extends Controller { public function beforeFilter() { $this->set('something', $foobar); } }
您还可以在布局文件的所有页面上加载视图内容。