我有一张Products
桌子和一张Products_Prices
桌子。该Products_Prices
表有这些字段product_id, size_id, price
在 ProductsController 的添加操作中,我得到了类似的数据。产品保存有效
但我不知道保存产品后我应该如何获得ID
新创建的产品以及如何保存价格信息。
array(
'id' => '',
'name' => 'Pizza Salami',
'description' => 'some description here',
'active' => '1',
'offered' => '1',
'category_id' => '15',
'Price' => array(
(int) 0 => array(
'size_id' => '2',
'price' => '5'
),
(int) 1 => array(
'size_id' => '3',
'price' => '6'
),
(int) 2 => array(
'size_id' => '4',
'price' => '7'
),
(int) 3 => array(
'size_id' => '5',
'price' => '9'
)
)
)