TP手冊學習第三天
阿新 • • 發佈:2017-11-14
進入 技術 cati 清除 app 控制 log true 學習
- 命令行
先在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]);
TP手冊學習第三天