我正在尝试将以下表单的数据插入不是“默认”数据库的表中。但是,我不知道该怎么做,我仍在适应 cakephp。我猜表格是正确完成的,并且数据库中特定表的名称是输入中的名称。但我不是说他应该插入哪个表吗?那不是必须的吗?或者如果需要,我缺少什么来指定我想要的表?
<?php echo $this->Form->create('Ficha', array('action' => 'index')); ?>
//echo $this->Form->input('id_fichas', array('label' => 'Id Ficha:'));
echo $this->Form->input('class_subst', array('label' => 'Class mistura:'));
echo $this->Form->input('simbolos_perigo', array('label' => 'Símbolos:'));
echo $this->Form->input('frases_r', array('label' => 'Frases:'));
echo $this->Form->end('Finalizar Ficha'); ?>