如何使用Cakephp 3解决UserController中的Missing方法?

时间:2015-10-06 09:47:59

标签: php cakephp cakephp-3.0

我在UsersController错误中丢失了方法。

  

在userController中未定义action table_datatable.ctp。

     

错误:在文件中创建UsersController :: table_datatable.ctp():src \ Controller \ UsersController.php。

<?php
namespace App\Controller;

use App\Controller\AppController;

class UsersController extends AppController
{

    public function table_datatable.ctp()
    {

    }
}

1 个答案:

答案 0 :(得分:4)

错误消息取决于请求的网址,该错误消息表示您正在请求此网址:

http://example.com/users/table_datatable.ctp
网址中

.ctp 从不 - 网址与模板文件的路径不匹配;只有the webroot folder才能直接通过网络访问。

在继续之前,做the blog tutorial会是一个好主意,它只需要大约15分钟,并将为您提供有关CakePHP如何工作以及如何使用它的基本介绍。