0
Rails 2.3でwith_exclusive_scopeを使用して改ページする方法はありますか?with_exclusive_scopeを使用したページ番号
@albums = Album.paginate(:page => 1, :per_page => 12, :conditions => cond)
が問題ありません。
Album.with_exclusive_scope {find(:all, :conditions => cond)}
が問題ありません。
with_exclusive_scopeとpaginateを組み合わせることはできますか?