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>
class Index 没有继承 Controller
开启DEBUG 了解详细错误 原因