我将模型烘焙到插件中,但无法加载。
我做了什么:
1.烘焙模型
bin/cake bake model History --connection data --plugin Data --no-rules --no-validation --table elements_history
正在检测关联,请稍候。
正在为历史记录创建烘焙表类...
正在创建文件/var/www/app/plugins/data/src/model/table/历史表. php
正在烘焙历史记录的实体类...
正在创建文件/var/www/app/plugins/Data/src/模型/实体/历史记录. php
正在为历史记录烘烤测试夹具...
正在创建文件/var/app/plugins/data/tests/Fixture/HistoryFixture. php已写入/var/www/app/plugins/Data/tests/Fixture/HistoryFixture.php
Bake正在检测可能的设备...
正在烘焙Data\Model\Table\HistoryTable的测试用例...
正在创建文件/var/www/app/plugins/Data/tests/TestCase/Model/Table/HistoryTableTest. php已写入/var/www/app/plugins/Data/tests/TestCase/Model/Table/HistoryTableTest.php
已完成
1.已通过$this->addPlugin('Data');
加载新创建的插件
1.已验证是否通过bin/cake plugin loaded
加载插件
1.已确认plugins/Data/src/Model/Table/HistoryTable.php
存在
root@debian:/var/www/app# cat plugins/Data/src/Model/Table/HistoryTable.php
<?php
declare(strict_types=1);
namespace Data\Model\Table;
use Cake\ORM\Query;
use Cake\ORM\RulesChecker;
use Cake\ORM\Table;
use Cake\Validation\Validator;
/**
* History Model
*
* @method \Data\Model\Entity\History newEmptyEntity()
* @method \Data\Model\Entity\History newEntity(array $data, array $options = [])
* @method \Data\Model\Entity\History[] newEntities(array $data, array $options = [])
* @method \Data\Model\Entity\History get($primaryKey, $options = [])
* @method \Data\Model\Entity\History findOrCreate($search, ?callable $callback = null, $options = [])
* @method \Data\Model\Entity\History patchEntity(\Cake\Datasource\EntityInterface $entity, array $data, array $options = [])
* @method \Data\Model\Entity\History[] patchEntities(iterable $entities, array $data, array $options = [])
* @method \Data\Model\Entity\History|false save(\Cake\Datasource\EntityInterface $entity, $options = [])
* @method \Data\Model\Entity\History saveOrFail(\Cake\Datasource\EntityInterface $entity, $options = [])
* @method \Data\Model\Entity\History[]|\Cake\Datasource\ResultSetInterface|false saveMany(iterable $entities, $options = [])
* @method \Data\Model\Entity\History[]|\Cake\Datasource\ResultSetInterface saveManyOrFail(iterable $entities, $options = [])
* @method \Data\Model\Entity\History[]|\Cake\Datasource\ResultSetInterface|false deleteMany(iterable $entities, $options = [])
* @method \Data\Model\Entity\History[]|\Cake\Datasource\ResultSetInterface deleteManyOrFail(iterable $entities, $options = [])
*
* @mixin \Cake\ORM\Behavior\TimestampBehavior
*/
class HistoryTable extends Table
{
/**
* Initialize method
*
* @param array $config The configuration for the Table.
* @return void
*/
public function initialize(array $config): void
{
parent::initialize($config);
$this->setTable('elements_history');
$this->setDisplayField('id');
$this->setPrimaryKey('id');
$this->addBehavior('Timestamp');
}
/**
* Returns the database connection name to use by default.
*
* @return string
*/
public static function defaultConnectionName(): string
{
return 'data';
}
}
- 将插件模型添加到任意控制器方法:
- 或者是
$this->loadModel('Data.History');
, - 或
TableRegistry::getTableLocator()->get('Data.History');
- 出现错误:
无法找到别名数据的表类。无法找到别名数据的表类。Cake\ORM\Exception\MissingTableClassException CORE/src/ORM/Locator/TableLocator.php:245
我尝试了哪些方法:
- 我已经查看了
CORE/src/ORM/Locator/TableLocator.php
,我可以记录_getClassName
接收Data.History
,但返回一个null
。我还记录了它循环通过的$this->locations
,插件路径不在那里:
Array
(
[0] => Model/Table
)
- 在针对
_classExistsInBase
运行\Model\Table\HistoryTable
测试之前,将debug
添加到CORE/src/Core/App.php
。
第一个
你知道这个问题是什么吗?如何解决?我在CakePHP 4.2.4和Bake 2上。
1条答案
按热度按时间hfyxw5xn1#
如果是手动创建的插件,您需要确保相应地更新
composer.json
的autoloader配置并转储autoloader,否则您的插件类将无法找到。对于您的本地
Data
插件,它看起来像这样:然后转储自动加载器:
如果你使用bake创建插件,它会询问你是否应该修改你的
composer.json
,如果你允许它,它会相应地更新它并转储自动加载器。另请参阅
*Cookbook〉插件〉手动自动加载插件类
*Cookbook〉插件〉创建您自己的插件〉使用Bake创建插件