- 命令行
先在cmd进入项目目录,再执行命令
- 生成
index
模块的Blog
控制器类库文件:php think make:controller index/Blog - 如果仅仅生成空的控制器则可以使用:php think make:controller index/Blog --plain
- 清除缓存文件(runtime目录):php think clear
- 清除指定目录下的文件:php think clear --path d:\www\tp5\runtime\log\
- 生成
- 引用模板(路径以 项目目录/public/ 路径下为起点):{include file="public/header,public/menu" /}
或者直接包含一个模版文件名(包含完整路径),例如:{include file="../application/view/default/public/header.html" /}
支持传入参数,如:{include file="Public/header" title="$title" keywords="开源WEB开发框架" /}
模板中的使用方法为:1.<html xmlns="http://www.w3.org/1999/xhtml"> 2.<head> 3.<title> [title] </title> #变量的使用方法 4.<meta name="keywords" content=" [keywords] " /> 5.</head>
- 在模板中输出文件:$this->assign(['data1'=>$data1,'data2'=>$data2]);
转载于:https://www.cnblogs.com/yolo-bean/p/7834295.html