我正在使用FeinCMS。我想在页面对象进入渲染模板之前对页面对象进行一些处理。
在我看来,我有代码:
this_page = Page.objects.best_match_for_path(request.path)
正确获取我所在路径的页面。
我真的想从这个页面中获取一些数据。
我可以调用一个函数来获取数据吗?如:
this_page = Page.objects.best_match_for_path(request.path)
data = this_page.get_content_for_region('main')
我在readthedocs页面中找不到任何答案。 我对模板或渲染区域不感兴趣。