cakephp找到所有没有特定habtm标签的帖子

时间:2012-10-23 21:14:48

标签: php mysql cakephp has-and-belongs-to-many

看起来像一个简单的但预期的查询不起作用。下面的代码只是为了说明我的观点。实际模型还有一些其他条件等,但即使我把它们全部剥离到基本的东西,我也没有结果。

我已尝试使用linkable和手动连接。

$posts = $this->Post->find("all", array(
"conditions"=>array(
    "Tag.id !="=>$bad_id
),
"link"=>array("Tag")
));

$ posts返回空数组。

0 个答案:

没有答案