0

目前我正在使用

$posts = $this->Post->find('all');

它返回表格帖子的完整条目,但我怎样才能只获得部分条目。就像是

SELECT body,title FROM posts
4

1 回答 1

1

传递“字段”选项并指定(在数组中)要检索的字段。

$posts = $this->Post->find('all', array(
    'fields' => array('body', 'title')
));

我讨厌成为写这篇文章的人,因为它通常困扰着我,但我认为这个问题值得“RTM”。

书中的这一页解释了一切: http ://book.cakephp.org/2.0/en/models/retrieving-your-data.html

于 2012-08-23T14:19:25.470 回答