版本:thinkphp 3.2.3 开发文档中提到 注意:定义控制器方法的时候,尽量避免和系统的保留方法相冲突( 除非你非常明确自己在做什么 ), 这些保留方法名包括但不限于以下 display get show fetch theme assign error success 'ACTION_SUFFIX' => 'Action', // 操作方法后缀设置操作方法的后缀为Action,这样,控制器的操作方法定义调整为: <?php namespace Home\Controller; use Think\Controller; class IndexController extends Controller { public function listAction(){ echo 'list'; } public function helloAction(){ echo 'hello'; } public function testAction(){ echo 'test'; } } 本地还是访问不了?有同学可以解释下吗 ,url形如:http://localhost/index.php/Home/Index/listAction.html
慕仙5610752