您好,我的代码在 CakePHP 框架中不起作用,并且显示错误消息。
网址:
http://domainname.com/About/param1/param2
代码:
class AboutController extends AppController {
public $name = 'About';
public $helpers = array('Html');
public function index($arg1, $arg2)
{
print_r($this->request->params['pass']);
$this->set('title_for_layout','Sarasavi Bookshop - About Sarasavi Bookshop');
$this->set('nameforfiles','about');
}
}
错误信息:
Missing Method in AboutController
Error: The action param1 is not defined in controller AboutController
Error: Create AboutController::param1() in file: app\Controller\AboutController.php.
<?php
class AboutController extends AppController {
public function param1() {
}
}
Notice: If you want to customize this error message, create app\View\Errors\missing_action.ctp
创建函数后param1
我可以得到param2
,但我需要得到param1
和param2
两者,在index
函数中没有创建另一个动作。
请帮助我,谢谢