检索数据时“无法将值转换为字符串”(belongsToMany关系)

时间:2016-10-18 13:59:56

标签: php mysql cakephp cakephp-3.x cakephp-3.3

我正在使用CakePHP 3.3.6和MySQL 5.7.13。

我的数据库(以及其他)中有这三个表:集合标记和联接表 collections_tags

集合表

CREATE TABLE IF NOT EXISTS `database`.`collections` (
  `id` INT UNSIGNED NOT NULL AUTO_INCREMENT,
  `name` VARCHAR(45) NOT NULL,
  `event_date` DATE NOT NULL,
  `url_slug` VARCHAR(45) NOT NULL,
  `status` TINYINT(1) NOT NULL DEFAULT 0,
  `user_id` INT UNSIGNED NOT NULL,
  `created` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `modified` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`, `user_id`),
  INDEX `fk_collections_users1_idx` (`user_id` ASC),
  CONSTRAINT `fk_collections_users1`
    FOREIGN KEY (`user_id`)
    REFERENCES `database`.`users` (`id`)
    ON DELETE NO ACTION
    ON UPDATE NO ACTION,
ENGINE = InnoDB

标签表

CREATE TABLE IF NOT EXISTS `database`.`tags` (
  `id` INT UNSIGNED NOT NULL AUTO_INCREMENT,
  `name` VARCHAR(45) NOT NULL,
  `created` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `modified` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`))
ENGINE = InnoDB

collections_tags表

CREATE TABLE IF NOT EXISTS `database`.`collections_tags` (
  `id` INT NOT NULL AUTO_INCREMENT,
  `collection_id` INT UNSIGNED NOT NULL,
  `tag_id` INT UNSIGNED NOT NULL,
  PRIMARY KEY (`id`, `collection_id`, `tag_id`),
  INDEX `fk_collections_has_tags_tags1_idx` (`tag_id` ASC),
  INDEX `fk_collections_has_tags_collections1_idx` (`collection_id` ASC),
  CONSTRAINT `fk_collections_has_tags_collections1`
    FOREIGN KEY (`collection_id`)
    REFERENCES `database`.`collections` (`id`)
    ON DELETE NO ACTION
    ON UPDATE NO ACTION,
  CONSTRAINT `fk_collections_has_tags_tags1`
    FOREIGN KEY (`tag_id`)
    REFERENCES `database`.`tags` (`id`)
    ON DELETE NO ACTION
    ON UPDATE NO ACTION)
ENGINE = InnoDB
我的Table \ CollectionsTable.php中的

public function initialize(array $config)
{
    # A collection hasMany Sets
    $this->hasMany('Sets', [
        'dependent' => True,
    ]);

    # A Collection belongsTo a User
    $this->belongsTo('Users');

    # A Collection belongsToMany Tags
    $this->belongsToMany('Tags');
}

在我的表\ TagsTable.php中:

public function initialize(array $config)
{
    # A Tag belongsToMany Collections
    $this->belongsToMany('Collections');
}

我可以获得所有收藏品或所有标签。有用。 但是,如果我尝试使用相关标签获取所有集合,则会出现此错误:

Cannot convert value to string

当我在Collections控制器中有此错误时会发生此错误:

class CollectionsController extends AppController
{
    public function index()
    {
        $this->set('collections', $this->Collections->find('all', ['contain' => ['Tags']]));
    }
}

这在我的 Template \ Collections \ index.ctp

<h1>Hi, this is the Collection > Index page.</h1>

<?php foreach ($collections as $collection): ?>
<p>test</p>
<?php endforeach; ?>

我不知道为什么......我尝试创建一个Table \ CollectionsTagsTable.php文件,但它没有什么区别。

感谢您的帮助

编辑:我尝试用 TIMESTAMP 更改 DATETIME 字段,用 INT更改 TINYINT ,它没有改变任何东西。

3 个答案:

答案 0 :(得分:6)

使用类似的设置在本地测试它。看起来像集合表中的主键索引"user_id"会导致此处出现问题。通过删除它,问题就消失了。

我实际上并不了解复合键及其在 CakePHP3 中的用法,所以也许有经验丰富的人可以告诉我,为什么会失败。

答案 1 :(得分:2)

尝试将集合上的复合主键更改为id字段。

答案 2 :(得分:1)

您尚未将主键设置为id类中user_idCollectionsTable的组合。

// In initialize method of CollectionsTable
$this->primaryKey(['id', 'user_id']);