1. 程式人生 > >TP手冊學習第三天

TP手冊學習第三天

進入 技術 cati 清除 app 控制 log true 學習

  1. 命令行
    先在cmd進入項目目錄,再執行命令
    技術分享
    1. 生成index模塊的Blog控制器類庫文件:php think make:controller index/Blog
    2. 如果僅僅生成空的控制器則可以使用:php think make:controller index/Blog --plain
    3. 清除緩存文件(runtime目錄):php think clear
    4. 清除指定目錄下的文件:php think clear --path d:\www\tp5\runtime\log\
  2. 引用模板(路徑以 項目目錄/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>
    

      

  3. 在模板中輸出文件:$this->assign([‘data1‘=>$data1,‘data2‘=>$data2]);

TP手冊學習第三天