为什么不应该在cakePHP 3中调用虚拟属性getter?

时间:2015-05-17 12:36:19

标签: cakephp models cakephp-3.0

在ctp中,我显示了两个实体的几个虚拟属性,由getter计算。 两个实体中的一个实体都可以,但对于另一个实体,从不调用任何属性getter。

以下是ctp的摘录:

<table>
    ....
    <td><?= $agTheme->agthemelanguages_wc_string ?></td>
    <td><?= $agPoi->paragraph_length_string ?></td>
    <td><?= $agPoi->images_string ?></td>
    <td><?= $agPoi->audios_string ?></td>
    ....
</table>

对于AgTheme的财产来说没有问题,但是没有人知道Agpoi的财产。

Agtheme模型是:

<?php
namespace App\Model\Entity;

use Cake\ORM\Entity;
use Cake\Collection\Collection;
use Cake\Core\Configure;
use Cake\Log\Log;
use Cake\ORM\TableRegistry;

class Agtheme extends Entity {

    protected $_accessible = [
        'site_id' => true,
        'site' => true,
        'name' => true,
        'directory_name' => true,
        'comment' => true,
        'image_0' => true,
        'imgpathname0' => true,
        'imgfile0' => true,
        'mobile_theme' => true,
        'agthemelanguages' => true,
        'poi_by_tag' => true,
        'poi_to_map' => true,
        'unlock_mode' => true,
        'unlock_code' => true,
        'published' => true,
        'approved' => true,
    ];


    protected function _getAgthemelanguagesWcString() {

        if (isset($this->_properties['agthemelanguages_wc_string'])) {
            return $this->_properties['agthemelanguages_wc_string'];
        }

        if (empty($this->agthemelanguages)) {
            return '';
        }

        $agthemelanguages = new Collection($this->agthemelanguages);

        $str = $agthemelanguages->reduce(function ($string, $agthemelanguage) {
            return $string . $agthemelanguage->language->name_fr . ' :<br/>';
        }, '');

        return trim($str, '<br/>');

    }

    function _getImgpathname0() {

        if (isset($this->_properties['imgpathname0'])) {
            return $this->_properties['imgpathname0'];
        }

        if (!isset($this->_properties['id']) || empty($this->image_0) || !isset($this->_properties['directory_name'])) {
            return '';
        }

        $img_path = SITES_CONTENT_URL . $this->_properties['directory_name'] .'/imgTheme_0.' . $this->_properties['image_0'];

        return $img_path;
    }
}

Agpoi模型是(Agpoi.php):

<?php
namespace App\Model\Entity;

use Cake\ORM\Entity;
use Cake\Collection\Collection;

class Agpoi extends Entity
{

    protected $_accessible = [
        'name' => true,
        'latitude' => true,
        'longitude' => true,
        'bearing' => true,
        'preload' => true,
        'agtheme' => true,
        'agpoiaudios' => true,
        'agpoiimages' => true,
        'agpoitextes' => true,
        'agpoiwaypoints' => true,
    ];

    protected function _getImagesString()
    {
        if (isset($this->_properties['images_string'])) {
            return $this->_properties['images_string'];
        }

        if (empty($this->agpoiimages)) {
            return '';
        }

        $agpoiimages = new Collection($this->agpoiimages);

        $str = $agpoiimages->reduce(function ($string, $agpoiimage)
        {
            return $string . $agpoiimage->image . ', ';
        }, '');

        return trim($str, ', ');
    }

    protected function _getAudiosString()
    {
        if (isset($this->_properties['audios_string'])) {
            return $this->_properties['audios_string'];
        }
        if (empty($this->agpoiaudios)) {
            return '';
        }

        $agpoiaudios = new Collection($this->agpoiaudios);

        $str = $agpoiaudios->reduce(function ($string, $agpoiaudio)
        {
            return $string . $agpoiaudio->filename . ', ';
        }, '');

        return trim($str, ', ');
    }

    protected function _getParagraphLengthString() {

        if (isset($this->_properties['paragraph_length_string'])) {
            return $this->_properties['paragraph_length_string'];
        }

        if (empty($this->agpoitextes)) {
            return '';
        }

        $agpoitextes = new Collection($this->agpoitextes);

        $str = $agpoitextes->reduce(function ($string, $agpoitexte) {
            return $string . str_word_cound($agpoitexte->paragraph) . __(" mots<br/>");
        }, '');

        return trim($str, '<br/>');

    }
}

不幸的是,我怀疑这个问题可能来自上面的代码,我最好在其他地方考虑一个愚蠢的错误,但我真的很想知道是什么原因导致这样的问题,这就是我的问题:

谁能告诉我什么允许蛋糕寻找吸气剂? 什么可以阻止蛋糕称为吸气剂?

我想答案对于最后一个问题并不明显,但任何提示都会受到赞赏......

修改

@ndm     调试(get_class($ agPoi));     &#39;蛋糕\ ORM \实体&#39;

,而     调试(get_class($ agTheme));     &#39;应用软件\模型\实体\ Agtheme&#39;

很明显,Agpoi的定义并不明确,但我不明白为什么......

编辑2 表是(AgpoisTable.php):

<?php
namespace App\Model\Table;

use Cake\ORM\Query;
use Cake\ORM\Table;
use Cake\Validation\Validator;

/**
 * Agpois Model
 */
class AgpoisTable extends Table {

/**
 * Initialize method
 *
 * @param array $config The configuration for the Table.
 * @return void
 */
    public function initialize(array $config) {
        $this->table('agpois');
        $this->displayField('id');
        $this->primaryKey('id');

        $this->belongsToMany('Agthemes', [
            'foreignKey' => 'agpoi_id',
            'targetForeignKey' => 'agtheme_id',
            'joinTable' => 'agthemes_agpois',
            'dependent' => true,
        ]);

        $this->hasMany('Agpoiaudios', [
            'dependent' => true,
            'foreignKey' => 'agpoi_id',
        ]);

        $this->hasMany('Agpoiimages', [
            'dependent' => true,
            'foreignKey' => 'agpoi_id',
        ]);

        $this->hasMany('Agpoitextes', [
            'dependent' => true,
            'foreignKey' => 'agpoi_id',
        ]);

        $this->hasMany('Agpoiwaypoints', [
            'dependent' => true,
            'foreignKey' => 'agpoi_id',
        ]);


    }

    public function validationDefault(Validator $validator) {
        $validator
            ....
        return $validator;
    }
}

我也搜索了agpoi&#39;无处不在......没有意外的其他agpoi类名或类似的东西。

debug($this->Agpois);

object(App\Model\Table\AgpoisTable) {

    'registryAlias' => 'Agpois',
    'table' => 'agpois',
    'alias' => 'Agpois',
    'entityClass' => '\Cake\ORM\Entity',
    'associations' => [
        (int) 0 => 'agthemes',
        (int) 1 => 'agpoiaudios',
        (int) 2 => 'agpoiimages',
        (int) 3 => 'agpoitextes',
        (int) 4 => 'agpoiwaypoints',
        (int) 5 => 'agthemesagpois'
    ],
    'behaviors' => [],
    'defaultConnection' => 'default',
    'connectionName' => 'default'
}

总是当然是entityClass的问题。

1 个答案:

答案 0 :(得分:2)

这里的问题似乎是表类的名称,主要是实体类的名称,可能取决于您的观点。

默认情况下,使用单数表类名称而不是尾随Table来猜测相应实体类的名称,但Agpois不会影响Agpoi您可能已经假设,但只是Agpois,因此它正在寻找不存在的类App\Model\Entity\Agpois,因此回退到默认实体基类。

我不确定Agpois的含义是什么,它源于哪种语言,但它肯定不是英语,因此这些问题并不出乎意料,因为Inflector是仅处理英语单词。

TL;博士

如果您必须使用名称Apgois,那么您必须在表initialize()方法中手动定义实体类的名称:

public function initialize(array $config)
{
    // ...
    $this->entityClass('Apgoi');
    // ...
}

或配置变形器以便它可以处理该单词:

Inflector::rules('irregular', ['apgoi' => 'apgois']);

甚至将实体类重命名为Apgois,如果这是适用的,并且不会导致任何命名冲突。

另见