Zend Framework: Action does not exist


Zend Framework: Action does not exist

这是我的表单生成器函数:

private function getAddArtistForm() {
  $form = new Zend_Form();
  $form->setAction("saveArtist");
  $form->setMethod("post");
  $form->setName("addartist");
  ...
}
public function newAction()
{
  $form = $this->getAddArtistForm();
  $this->view->form = $form;
}

我还有一个名为saveArtistAction的操作:

public function saveArtistAction() {
...
}

但是当我提交表单时,出现以下错误:

Message: Action "saveartist" does not exist and was not trapped in __call() 

请求参数:

array (
  'controller' => 'artist',
  'action' => 'saveartist',
  'module' => 'default',
)  

如果用连字符指定action怎么办:

'action' => 'save-artist',