こんにちは、私のコードはCakePHPフレームワークで機能しておらず、エラーメッセージが表示されています。
URL:
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
助けてください、ありがとう