Thinkjsのビュー

537 ワード

表示
ビューはテンプレートで、デフォルトのルートディレクトリはview/です.
ビューファイル
ビューファイルのデフォルトの命名規則はモジュール/コントローラ_です.操作します
URL home/articale/detail解析後のモジュールがhome,コントローラがarticle,操作がdetailであれば,対応するビューファイルはhome/articale()となります.detail.
例:ブラウザに入力するhttp://127.0.0.1:8360/home/article
   :src/home/controller/article.js
indexAction(){
    //auto render template file index_index.html
    //let data = {name: "  "};
    //this.success(data);
    return this.display();
  }
結果はモジュールview/home/articale_に戻ります.index.ページは先端に展示しています.