我的解决办法:
thinkPHP/Library/Think/view.class.php ,parseTemplate这个方法
第161行将
$template = CONTROLLER_NAME . $depr . ACTION_NAME;改为$template = CONTROLLER_NAME . $depr . strotolower(ACTION_NAME);各位可以测试,并将所有的模板名用小写的方式命名 最佳答案
$template = CONTROLLER_NAME . $depr . ACTION_NAME;改为$template = CONTROLLER_NAME . $depr . strotolower(ACTION_NAME);各位可以测试,并将所有的模板名用小写的方式命名