搜索

首页  >  问答  >  正文

在这一章节里面的视图方面的内容,我按视频上的代码来打上去,创建的文件也是按照视频的来打但为什么却输出页面错误!请稍后再试

index.php的代码内容

<?php
namespace app\index\controller;
use think\Controller;
class Index
{
   public function index()
   {
       return 'php';
   }
   public function hello()
   {
       return $this->fetch();
   }
}

这个是hello.html的内容

<!doctype html>
<html lang="en">
<head>
   <meta charset="UTF-8">
   <meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
   <meta http-equiv="X-UA-Compatible" content="ie=edge">
   <title>Document</title>
</head>
<body>
   <h2>我是Index模板中的Index控制器中的hello方法对应的模板文件</h2>
</body>
</html>

冷酸灵牙膏冷酸灵牙膏2005 天前1374

全部回复(3)我来回复

  • 木头人

    木头人2019-06-26 22:23:04

    class Index  没有继承 Controller

    回复
    0
  • 冷酸灵牙膏

    是的,好像是没有继承

    冷酸灵牙膏 · 2019-06-30 18:18:51
  • 秋香姐家的小书童

    秋香姐家的小书童2019-06-26 15:05:09

    开启DEBUG 了解详细错误 原因

    回复
    0
  • 取消回复