0

假设我有两个模型,Foo 属于To Bar:

$this->Foo->find('first',array(
    'conditions'=>array(
        'barRowNumber'=>$barRowNumber,
        'fooRowNumber'=>$fooRowNumber)));

我不能只做 auto_increment id,因为当我添加和删除记录时它们会跳过。那么如何在 CakePHP 中使用行号作为查找查询的参数呢?

4

1 回答 1

0
  1. 如果您没有 id,那么您应该计算搜索发生的行。
  2. 如果你有身份证,那$this->Foo->id = $value是关键
  3. 如果您有其他搜索值,那么$this->Foo->findbyYourValue就可以了
于 2013-08-27T08:00:42.937 回答