CakePHP:不要在 find() 中检索 id 字段
我想从表中检索一些列,没有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用查找参数设置所需的字段:
http:// book.cakephp.org/2.0/en/models/retriving-your-data.html
正如我在评论中指出的,在检索相关模型数据时,cake 使用 id 来获取外表中的相关数据。如果你想一想,CakePHP 还会怎么做呢?
如果您确实必须删除 id 列,您可以在 find 调用之后执行此操作:
Use the find params to set the fields you want:
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: