Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
レイアウト ファイル内の ID でページを検索する方法はありますか。私は現在使用しています
$this->fuel->pages->find(5)
しかし、うまくいきません。次のエラーメッセージが表示されます
プラグイン モジュールが見つかりません。カスタム プラグインの場合、バインドするのを忘れた可能性があります。
メソッドでパラメーターを渡すには配列を使用する必要があり、find_one.
find_one
$this->fuel->pages->find_one(array('where' => array('id' => 5)))