doupian9490 2019-05-03 13:01
浏览 33

如何使用cakephp 3集成任何模板?

I am new in cakephp 3.0 Now, What am I trying If I have any HTML template So, How can I integrate with cakephp.

Here, I am creating a controller: UsersController

src/controller

<?php
    namespace App\Controller;
    use App\Controller\AppController;
    use Cake\ORM\TableRegistry;

    class UsersController extends AppController{
        public function index(){
             $this->layout='index';
        }
    }
?>

config/routes.php

$routes->connect('/', ['controller' => 'Users', 'action' => 'display', 'home']);
$routes->connect('/pages/*', ['controller' => 'Pages', 'action' => 'display']);

src/Template/Layout: index.ctp

<html>
<head>
    <?php echo $this->Html->charset(); ?>
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
    <title>Insqft</title>
    <?php $this->Html->css('bootstrap.min.css'); ?>
</head>
<body>
    <h1>Welcome Cakephp</h1>
    <?php $this->Html->script('js/bootstrap.min.js'); ?>
</body>
</html>

When I open this on localhost then It show an error i.e. Error: Create UsersController::display() in file: src\Controller\UsersController.php.. So, How can I do this? Please help me.

Thank You

  • 写回答

0条回答 默认 最新

    报告相同问题?

    悬赏问题

    • ¥20 测距传感器数据手册i2c
    • ¥15 RPA正常跑,cmd输入cookies跑不出来
    • ¥15 求帮我调试一下freefem代码
    • ¥15 matlab代码解决,怎么运行
    • ¥15 R语言Rstudio突然无法启动
    • ¥15 关于#matlab#的问题:提取2个图像的变量作为另外一个图像像元的移动量,计算新的位置创建新的图像并提取第二个图像的变量到新的图像
    • ¥15 改算法,照着压缩包里边,参考其他代码封装的格式 写到main函数里
    • ¥15 用windows做服务的同志有吗
    • ¥60 求一个简单的网页(标签-安全|关键词-上传)
    • ¥35 lstm时间序列共享单车预测,loss值优化,参数优化算法