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.
我为我的预设数据库表制作了一个模型。现在在我的控制器的操作中,我有:
$this->loadModel('Preset'); $preset = $this->Preset->find();
表中的每个预设行都有多个字段,我希望$preset变量具有一行中的所有信息。我将如何按名称搜索行,然后从中获取所有其他字段?
$preset
假设您的模型有效:
$preset = $this->Preset->findAllByName('foo');
您想要完成的工作非常简单,并且在CakePHP 的文档中得到了很好的介绍。