Skip to content

Commit 9af8559

Browse files
committed
fix: not found page
1 parent 4492c3e commit 9af8559

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed

src/core/fetch/index.js

+11-4
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,24 @@ export function fetchMixin (proto) {
2828
// Current page is html
2929
this.isHTML = /\.html$/g.test(path)
3030

31-
// Load main content
32-
last.then((text, opt) => {
33-
this._renderMain(text, opt)
31+
const loadSideAndNav = () => {
3432
if (!loadSidebar) return cb()
3533

3634
const fn = result => { this._renderSidebar(result); cb() }
3735

3836
// Load sidebar
3937
loadNested(path, loadSidebar, fn, this, true)
38+
}
39+
40+
// Load main content
41+
last.then((text, opt) => {
42+
this._renderMain(text, opt)
43+
loadSideAndNav()
4044
},
41-
_ => this._renderMain(null))
45+
_ => {
46+
this._renderMain(null)
47+
loadSideAndNav()
48+
})
4249

4350
// Load nav
4451
loadNavbar &&

src/core/render/index.js

+4
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,10 @@ export function renderMixin (proto) {
117117
}
118118

119119
proto._renderMain = function (text, opt = {}) {
120+
if (!text) {
121+
return renderMain.call(this, text)
122+
}
123+
120124
callHook(this, 'beforeEach', text, result => {
121125
let html = this.isHTML ? result : this.compiler.compile(result)
122126
if (opt.updatedAt) {

0 commit comments

Comments
 (0)