2

我对 CakePHP 3 和保存新实体及其与一个操作的关联有疑问。

在我看来,我按照文档中的建议进行操作。

这是我的控制器:

$articles = TableRegistry::get('Articles');       
$article = $articles->newEntity($this->request->data);  

if ($this->request->is('post')) {            

    $valid = $articles->validate($article, [
        'associated' => ['Topics']
    ]);

    if ( $valid ) {
        $articles->save($article, [
            'validate' => false,
            'associated' => ['Topics']
        ]);
    }
}  

那是我的模型:

class ArticlesTable extends Table {   
    public function initialize(array $config) {        
        $this->primaryKey('article_id');
        $this->belongsTo ( 'Topics', [
            'targetForeignKey'  => 'topic_id'
        ]);
    }
}

class TopicsTable extends Table {  
    public function initialize(array $config) {        
        $this->primaryKey('topic_id');  
        $this->hasMany ( 'Articles', [
            'targetForeignKey'  => 'article_id'
        ]);    
}  

这是我的数据库:

CREATE TABLE `articles` (
  `article_id` int(11) NOT NULL AUTO_INCREMENT,
  `topic_id` int(11) DEFAULT NULL,
  PRIMARY KEY (`article_id`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=latin1;

CREATE TABLE `topics` (
  `topic_id` int(11) NOT NULL AUTO_INCREMENT,
  `topic_title` varchar(45) DEFAULT NULL,
  PRIMARY KEY (`topic_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

我的表格如下所示:

<input type="text" id="articles-heading" maxlength="45" required="required" name="Articles[heading]">
<input type="text" id="articles-topics-topic-title" list="topics" name="Articles[Topics][topic_title]"> 

我想创建一个包含所有关联的表单并通过一个请求保存它。

4

1 回答 1

10

缺少列

heading您的表中没有命名列articles

无效的外键配置

您的配置看起来错误,targetForeignKey用于BelongsToMany关联,并且article_id(另一个表的主键)不是关联中的外键Topic hasMany Comment,它是topic_id,并且在您遵循命名约定时没有必要指定它。

因此,当完全指定外键时,它应该看起来像这样:

class ArticlesTable extends Table {   
    public function initialize(array $config) {        
        $this->primaryKey('article_id');
        $this->belongsTo ( 'Topics', [
            'foreignKey' => 'topic_id'
        ]);
    }
}

class TopicsTable extends Table {  
    public function initialize(array $config) {        
        $this->primaryKey('topic_id');  
        $this->hasMany ( 'Articles', [
            'foreignKey' => 'topic_id'
        ]);   
    } 
} 

如果您坚持约定并命名您的主键,您可以避免很多混乱id

也可以看看

可能缺少辅助功能配置

由于您正在尝试保存非默认字段(即Topic数据而不是Topic主键),因此您必须使该字段可通过newEntity. 例如,这可以通过Entitiy::$_accessible属性来实现,该属性对于该实体的每个实例都是永久的,直到在运行时被覆盖

class Article extends Entity {
    protected $_accessible = [
        // ...
        'topic' => true
    ];
}

或使用accessibleFields选项 for Table::newEntity(),该选项仅适用于该单个实例。

$article = $articles->newEntity($this->request->data, [
    'accessibleFields' => [
        'topic' => true
    ]
]);  

也可以看看

字段命名约定

最后,您的表单数据格式不正确,默认情况下,名称应为小写并带有下划线以匹配实体属性,并且它们应该是单数(除非它是 a hasManyorbelongsToMany关联),即它应该是articleandtopic而不是Articlesand Topics,实际上也不是完全需要使用article

echo $this->Form->input('heading');
echo $this->Form->input('topic.topic_title');
<input type="text" name="heading">
<input type="text" name="topic[topic_title]"> 

另请参阅Cookbook > Helpers > FormHelper > 字段命名约定

于 2014-10-13T00:23:33.133 回答