我无法在w中获取父页面查询

时间:2019-12-05 23:28:35

标签: python django wagtail

我尝试了这段代码,但始终返回一个空查询,我也不知道为什么。

const readStream= fs.createReadStream('xlsx file path here'); readStream.on('header', (header) => { console.log('header event'); console.log(header); }) .on('data', function(file) { console.log('data event'); });

1 个答案:

答案 0 :(得分:1)

get_parentPage类的特定实例上的方法,它不是属性。您不应直接从Page类中调用它,而应从特定页面中调用它。

它应该看起来像这样:

parent = MangaPage.objects.get(title='Some Title').specific().get_parent()

本质上,您在代码示例中所做的就是搜索标题等于 method MangaPage的{​​{1}},当然没有。您需要获取特定页面实例的父级。