在我的應用程序Quotes belongsTo產品中,該產品又屬於一種材料。由於我無法在查找數組後將產品模型包含在從報價模型訪問的材料中,因此我已將報價直接與材料相關聯。CakePHP - 在beforeSave中訪問相關模型
我現在遇到的問題是,對於報價material_id需要被自動保存在此基礎上選擇了報價
即從所選產品拉動Product.material_id價值的產品和在報價保存到數據庫之前,自動將其保存到Quote.material_id字段。
我對cakePHP很新穎。有誰知道這可以做到嗎?
編輯:
下面是一個幫助解釋的例子。在我的報價模式,我可以有:
public function beforeSave($options) {
$this->data['Quote']['material_id'] = 4;
return true;
}
,但我需要做更多的東西像這樣不工作:
public function beforeSave($options) {
$this->data['Quote']['material_id'] = $this->Product['material_id'];
return true;
}