سؤال

There are a lot of possibilities to make pagination with domain classes, but what about existing ArrayList of objects?

Is it possible?

هل كانت مفيدة؟

المحلول

Couldn't you use the standard Grails paginate tag, but in place of:

    [books: Book.list(params), bookCount: Book.count()]

Do something like:

    [books:list.drop(params.int('offset')?:0).take(params.int('max')?:10),
     bookCount: list.size()]
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top