複数のレコードを挿入したいのですが、私の ci=ontroller コードは次のとおりです。
if(empty($this->data) == false)
{
for($i=0;$i<=count($this->data['Breakdown']);$i++)
{
echo count($this->data['Breakdown']);
$this->Breakdown->create();
if($this->Breakdown->save($this->data))
{
$this->Session->setFlash('Quantity Breakdown has been added Successfully.', 'default', array('class' => 'oMsg1 oMsgError1'));
//$this->redirect('qty_breakdown');
}
}
}
else
{
$this->set('errors', $this->Breakdown->invalidFields());
}
私の問題は、テキスト フィールドに値を 1 つだけ入力すると、レコードが 8 回挿入されることです。このコードを使用して完全に挿入するソリューションが必要ですか?