-1

我使用 cakephp-elasticsearch 插件来索引和搜索 mysql Db。我按照此链接中的教程进行操作:

https://github.com/dkullmann/CakePHP-Elastic-Search-DataSource

我创建了“详细信息”模块:

<?php
class details extends AppModel {

   public $useDbConfig = 'index';
public $useType = 'details';

    public $_mapping = array(
        'name' => array('type' => 'string'),
        'addr' => array('type' => 'string'),
        'phno' => array('type' => 'string'),
        'city' => array('type' => 'string'),
        'state' => array('type' => 'string'),

    );

    public function elasticMapping() {
        return $this->_mapping;
    }
}
?>

要开始索引记录,我使用了这个命令:

Console/cake Elastic.elastic index details

我收到以下错误:

Retrieving data from mysql starting on 1970-01-01 00:00:00
Error: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'details.id' in 'field list'
#0 /var/www/cakephp/lib/Cake/Model/Datasource/DboSource.php(460): PDOStatement->execute(Array)
#1 /var/www/cakephp/lib/Cake/Model/Datasource/DboSource.php(426): DboSource->_execute('SELECT `details...', Array)
#2 /var/www/cakephp/lib/Cake/Model/Datasource/DboSource.php(669): DboSource->execute('SELECT `details...', Array, Array)
#3 /var/www/cakephp/lib/Cake/Model/Datasource/DboSource.php(1080): DboSource->fetchAll('SELECT `details...', false)
#4 /var/www/cakephp/lib/Cake/Model/Model.php(2696): DboSource->read(Object(details), Array)
#5 /var/www/cakephp/app/Plugin/Elastic/Console/Command/ElasticShell.php(288): Model->find('all', Array)
#6 /var/www/cakephp/lib/Cake/Console/Shell.php(389): ElasticShell->index()
#7 /var/www/cakephp/lib/Cake/Console/ShellDispatcher.php(200): Shell->runCommand('index', Array)
#8 /var/www/cakephp/lib/Cake/Console/ShellDispatcher.php(68): ShellDispatcher->dispatch()
#9 /var/www/cakephp/app/Console/cake.php(37): ShellDispatcher::run(Array)
#10 {main}

我没有任何名为 id 的字段。我会犯什么错误?请帮我!!

4

1 回答 1

1

所有数据库表都需要一个主键

默认情况下,该字段的名称是id. 如果表有不同的主键,则需要设置primaryKey属性,以便 Cake 知道它是什么:

class MyModel extends AppModel {

    $primaryKey = 'odd';

}

保持传统

我会犯什么错误?

问题中的代码还有其他错误,即:

型号名称是单数

所以,class details-> class detail

details在查找要使用的表格时,Cake 会自动使用带下划线的复数形式 ( )。

类名是 CameBacked

所以class detail->class Detail

书中有更多关于CakePHP 约定的信息。

这在ES 插件的文档中也隐含地加强了,比较问题中的 cli 调用:

Console/cake Elastic.elastic index details
                                   ^ lower case plural model name

使用 ES 插件自述文件中的一个:

Console/cake Elastic.elastic index Contact
                                   ^ Correct case and singular

不遵循约定是发现不一致行为的简单方法。

于 2013-07-12T08:13:17.467 回答