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)))