我尝试了这段代码,但始终返回一个空查询,我也不知道为什么。
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');
});
答案 0 :(得分:1)
get_parent
是Page
类的特定实例上的方法,它不是属性。您不应直接从Page
类中调用它,而应从特定页面中调用它。
它应该看起来像这样:
parent = MangaPage.objects.get(title='Some Title').specific().get_parent()
本质上,您在代码示例中所做的就是搜索标题等于 method MangaPage
的{{1}},当然没有。您需要获取特定页面实例的父级。