11.md—/Users/yasuhiko/Desktop/06

11 find( ) を使いこなす

  • 記事一覧全データの取得に find('all') を使ったが、条件を指定して取得する場合に find( ) を使う
    • idの降順に「2件」表示する場合([Postscontroller.php] を編集)
public function index() {
    $params = array(
        'order' => 'id desc',
        'limit' => 2
    );
    $this->set('posts', $this->Post->find('all', $params));
}

公式サイトで find( ) を確認

  1. Documentation -> API を開き 「find」で検索
  2. Model の Methods: find を参照

PAGE TOP



< 前へ  <<目次に戻る  次へ >