gpt4 book ai didi

cakephp HABTM 协会

转载 作者:行者123 更新时间:2023-12-02 02:12:08 26 4
gpt4 key购买 nike

您好,我有一个用 cakephp 开发的网站。我有两张 table :成分属性

表之间的关系是 HasAndBelongsToMany(HABTM)。这是我的模型:

class Ingredient extends AppModel {
public $name = 'Ingredient';
public $useTable = 'ingredients';
public $belongsTo = 'User';

public $hasAndBelongsToMany = array (
'Property' => array (
'className' => 'Property',
'joinTable' => 'ingredients_properties',
'foreignKey' => 'ingredient_id',
'associationForeignKey' => 'property_id',
'unique' => false
)
);

}

class Property extends AppModel{
public $name = 'Property';
public $useTable = 'properties';

}

在我的 IngredientController 中,我必须添加一个我在这种模式下尝试过的新属性:

$this->Ingredient->Property->create();
$this->Ingredient->Property->set('user_id',$this->Session->read('Auth.User.id'));
$this->Ingredient->Property->set('ingredient_id',$ing['IngredientAlias']['ingredient_id']);
if ($this->Ingredient->Property->save($this->request->data)){
$this->set('flash_element','success');
$this->Session->setFlash ('Ingrediente modificato con successo.');
$this->redirect(array('action'=>'edit',$alias));
}
else{
$this->set('flash_element','error');
$this->Session->setFlash('Errore di salvataggio activity');
}

在数据库中插入一条新记录,但如果我希望这是成分之间的关​​系,并在 ingredients_properties(连接表)中插入一条记录,我该怎么做?在这种模式下就像 Ingredients hasMany Properties 但不正确。我该如何解决?或者我必须手动将记录创建到 ingredients_properties 中?

最佳答案

关于cakephp HABTM 协会,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12272384/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com