-1
我從cakephp中的數據庫中提取數據。如何分組和合並數據
我的數組返回類似
但我想它在一排只有英雄的所有數據。 CakePHP中
$this->DispensaryInventory->bindModel(array(
'belongsTo'=>array(
'ProductOption' => array(
'className' => 'ProductOption',
'foreignKey' => 'product_option_id',
)
)
),false);
$this->DispensaryInventory->bindModel(array(
'belongsTo'=>array(
'Product' => array(
'className' => 'Product',
'foreignKey' => 'product_id',
)
)
),false);
$dispensary_inventory_data = $this->DispensaryInventory->find('all',array(
'conditions'=>array(
'DispensaryInventory.dispensary_id'=>$dispensary_id)
));
pr($dispensary_inventory_data);die;
感謝您的評論。我用代碼更新了我的問題。 –
您需要從DispensaryInventory獲得什麼字段名稱? –
$ value ['Product'] ['name'],$ value ['ProductOption'] ['value'],$ value ['ProductOption'] ['unit']和$ value ['DispensaryInventory'] ['quantity '] 所有返回5行同名(英雄) 但我想要一個包含所有。 –