Skip to content

Commit fc1cd3f

Browse files
committed
fix: basePath for history mode
1 parent 3f38810 commit fc1cd3f

File tree

6 files changed

+25
-18
lines changed

6 files changed

+25
-18
lines changed

src/core/config.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ const config = merge({
2020
ga: '',
2121
mergeNavbar: false,
2222
formatUpdated: '',
23-
externalLinkTarget: '_blank'
23+
externalLinkTarget: '_blank',
24+
routerModel: 'hash'
2425
}, window.$docsify)
2526

2627
const script = document.currentScript ||

src/core/fetch/index.js

-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ export function fetchMixin (proto) {
5050
const root = getParentPath(this.route.path)
5151
const path = this.router.getFile(root + coverpage)
5252

53-
console.log(this.route.path, root, path)
5453
if (this.route.path !== '/' || !coverpage) {
5554
this._renderCover()
5655
return

src/core/router/history/abstract.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,11 @@ export class AbstractHistory extends History {
1717
path = path.slice(0, queryIndex)
1818
}
1919

20-
return { path, query: parseQuery(query) }
20+
return {
21+
path,
22+
file: this.getFile(path),
23+
query: parseQuery(query)
24+
}
2125
}
2226

2327
toURL (path, params, currentRoute) {

src/core/router/history/base.js

+2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ export class History {
2323
}
2424

2525
getFile (path) {
26+
path = path || this.getCurrentPath()
27+
2628
const { config } = this
2729
const base = this.getBasePath()
2830

src/core/router/history/hash.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,11 @@ export class HashHistory extends History {
6969
path = path.slice(hashIndex + 1)
7070
}
7171

72-
return { path, query: parseQuery(query) }
72+
return {
73+
path,
74+
file: this.getFile(path),
75+
query: parseQuery(query)
76+
}
7377
}
7478

7579
toURL (path, params, currentRoute) {

src/core/router/history/html5.js

+11-14
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { History } from './base'
22
import { merge, noop } from '../../util/core'
33
import { on } from '../../util/dom'
4-
import { parseQuery, stringifyQuery, cleanPath } from '../util'
4+
import { parseQuery, stringifyQuery, getPath, cleanPath } from '../util'
55

66
export class HTML5History extends History {
77
constructor (config) {
@@ -10,7 +10,7 @@ export class HTML5History extends History {
1010
}
1111

1212
getCurrentPath () {
13-
const base = this.config.basePath
13+
const base = this.getBasePath()
1414
let path = window.location.pathname
1515

1616
if (base && path.indexOf(base) === 0) {
@@ -37,15 +37,6 @@ export class HTML5History extends History {
3737
on('popstate', cb)
3838
}
3939

40-
normalize () {
41-
let path = this.getCurrentPath()
42-
43-
path = path.replace('#', '?id=')
44-
window.history.pushState({ key: path }, '', path)
45-
46-
return path
47-
}
48-
4940
/**
5041
* Parse the url
5142
* @param {string} [path=location.href]
@@ -60,12 +51,18 @@ export class HTML5History extends History {
6051
path = path.slice(0, queryIndex)
6152
}
6253

63-
const baseIndex = path.indexOf(location.origin)
54+
const base = getPath(location.origin, this.getBasePath())
55+
const baseIndex = path.indexOf(base)
56+
6457
if (baseIndex > -1) {
65-
path = path.slice(baseIndex + location.origin.length)
58+
path = path.slice(baseIndex + base.length - 1)
6659
}
6760

68-
return { path, query: parseQuery(query) }
61+
return {
62+
path,
63+
file: this.getFile(path),
64+
query: parseQuery(query)
65+
}
6966
}
7067

7168
toURL (path, params, currentRoute) {

0 commit comments

Comments
 (0)