老师为什么在initEpub中调用的this.fileName就不是mounted中的fileName了呢
来源:4-2 阅读器解析和渲染
慕沐2093547
2020-12-07
methods: {
initEpub() {
const baseUrl =
" http://192.168.1.113:808/epub/" + this.KaTeX parse error: Expected 'EOF', got '}' at position 70: …(baseUrl);
}̲,
},
mounte…route.params.fileName.split("|").join("/");
this.KaTeX parse error: Expected 'EOF', got '}' at position 87: …b();
});
}̲,
我这个 this.store.state.book.fileName 改成this.fileName就显示未定义了,不明白为什么this.fileName就不是直接调用mounted中的fileName
写回答
1回答
-
扬_灵
2020-12-08
同学你好,fileName这个是我们在vuex中定义的变量,通过mapGetters处理可以直接this.fileName获取到,你在页面中看一下当前页面是否引入了mixin文件或是使用了mapGetters对fIleName做处理。
00
相似问题