CakePHP:不要在 find() 中检索 id 字段

发布于 2024-10-13 05:46:27 字数 101 浏览 4 评论 0原文

我想从表中检索一些列,没有 id 列,但 CakePHP 不断将其添加到 find() 数组中。 我应该怎么做才能解决这个问题?

I would like to retrieve some columns from a table, without the id column, but CakePHP keeps adding it to the find() array.
What should I do to solve this problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

弥枳 2024-10-20 05:46:27

使用查找参数设置所需的字段:

$this->find('all', array(
    'conditions' => array(), //array of conditions
    'fields' => array('field1', 'field2') //array of field names
));

http:// book.cakephp.org/2.0/en/models/retriving-your-data.html

正如我在评论中指出的,在检索相关模型数据时,cake 使用 id 来获取外表中的相关数据。如果你想一想,CakePHP 还会怎么做呢?

如果您确实必须删除 id 列,您可以在 find 调用之后执行此操作:

$data = $this->Model->find('first', array(
    'conditions' => array(), //array of conditions
));
unset($data['Model']['id']);

Use the find params to set the fields you want:

$this->find('all', array(
    'conditions' => array(), //array of conditions
    'fields' => array('field1', 'field2') //array of field names
));

http://book.cakephp.org/2.0/en/models/retrieving-your-data.html

As I noted in the comments, when retrieving related model data, cake uses the id to get the related data in the foreign table. If you think about it, how else would CakePHP do it?

If you really must remove the id column, you can do so after the find call:

$data = $this->Model->find('first', array(
    'conditions' => array(), //array of conditions
));
unset($data['Model']['id']);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文