根据手册,我应该能够做到这一点,即将 Model 保留为 null
<?php
echo $this->Form->create(null, array('url' => '/recipes/add'));
// or
echo $this->Form->create(null, array(
'url' => array('controller' => 'recipes', 'action' => 'add')
));
但实际上,我收到错误说缺少数据库表?为什么?
我有我的模型,它没有直接映射到任何表。为什么我不能将其保留为空?像这样的东西:
<?php echo $this->Form->create(null,array('url' => array('my_account','action' => 'change_avatar'),'type' => 'file'));?>