在 tornado-cms 中页面的控制器中,我执行以下操作:
def res = Service.tornado.articles([ articleCategoryPath: "boker/ny"]);
Service.tornado.loadFullArticles(res);
res.sort { a,b ->
b.props.year <=> a.props.year
}
tornado.small_articles = res;
或者,更短:
tornado.small_articles = Service.tornado.articles([
articleCategoryPath: "boker/ny",
full: true ])
.sort { a, b -> b.props.year <=> a.props.year };
small_articles
这将使用特定文件夹“boker/ny”中的所有文章填充内容框,这些文章按 article prop 反向排序year
。
它工作正常,但是否可以保存对内容框所做的更改,tornado.small_articles
以便从 GUI 中也可以看到生成的文章列表?像Service.tornado.saveChangesToPageContentBox(page, content_box_nr, tornado.small_articles);
什么?