我正在使用以下行来查询数据库:
List<PostsCategories> postsCategories = PostsCategories.findBySQL("select category from posts_categories");
它不是只返回[{category=Miscellaneous},....]
它而是返回额外的信息,例如Model, table, attributes
内部数组。
我不知道为什么它与activejdbc这样工作?
[Model: com.ngo.org10s.models.PostsCategories, table: 'posts_categories', attributes: {category=Miscellaneous}]
我如何简单地返回所需的值?