gpt4 book ai didi

php - Cakephp 3.0 - 在组件内加载模型

转载 作者:行者123 更新时间:2023-12-04 09:00:15 29 4
gpt4 key购买 nike

如何在 Cakephp 3.0 中的组件内加载模型?
之前(在 Cakephp 2 中)你可以使用

$Model = ClassRegistry::init($modelName);
$Model->create(false);
$saved = $Model->save($data);

3.0 中的等价物是什么?

最佳答案

如前所述,您可以使用 TableRegistry 访问模型:

use Cake\ORM\TableRegistry;
$this->Articles = TableRegistry::get('Articles');

See here for documentation.

关于php - Cakephp 3.0 - 在组件内加载模型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28876233/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com