私はこのコードを持っています
class PagamentoController extends Zend_Controller_Action
{
public function init()
{
/* Initialize action controller here */
}
public function indexAction()
{
$model_pagamenti = new Model_Pagamento();
$this->_helper->layout->setLayout('/crudabstract/index.phtml');
$this->view->render('/crudabstract/index.phtml');
}
...
/ pagamento/indexを実行すると
このエラーが発生します
An error occurred
Application error
Exception information:
Message: script 'pagamento/index.phtml' not found in path (C:/www/www/abc/application/views\scripts/)
Stack trace:
なぜうまくいかないのですか?「pagamento/index.phtml」を検索するのではなく、「/ crudabstract/index.phtml」を検索することになっています。
ありがとう