0

有没有一种方法可以在 Rails 2.3 中使用 with_exclusive_scope 进行分页?

@albums = Album.paginate(:page => 1, :per_page => 12, :conditions => cond) 

工作正常。

Album.with_exclusive_scope {find(:all, :conditions => cond)} 

工作正常。

我们可以结合 with_exclusive_scope 和分页吗?

4

1 回答 1

0

@albums = Album.find_allx(opts).paginate(:page => 1, :per_page => 12)

with_exclusive_scope 是受保护的方法,因此必须从类消息中调用它。在这种情况下,类方法是 find_allx()

于 2012-04-15T15:40:15.603 回答