Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
unidocs-zh
提交
d1e4cc34
unidocs-zh
项目概览
DCloud
/
unidocs-zh
通知
3172
Star
105
Fork
804
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
93
列表
看板
标记
里程碑
合并请求
67
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
unidocs-zh
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
93
Issue
93
列表
看板
标记
里程碑
合并请求
67
合并请求
67
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
d1e4cc34
编写于
8月 19, 2024
作者:
D
DCloud_LXH
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix: 文档重定向的时候,转小写
上级
fb7d85b6
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
13 addition
and
6 deletion
+13
-6
docs/.vuepress/config/redirectRouter.js
docs/.vuepress/config/redirectRouter.js
+13
-6
未找到文件。
docs/.vuepress/config/redirectRouter.js
浏览文件 @
d1e4cc34
...
...
@@ -92,7 +92,7 @@ const routerMap = {
'
/use-html5plus
'
:
'
/tutorial/use-html5plus.html
'
,
'
/m3w
'
:
'
/uniCloud/uni-portal.html
'
,
'
/tutorial/syntax-uts
'
:
'
/uni-app-x/uts/
'
,
'
/harmony/dev
'
:
'
/tutorial/harmony/dev.html
'
,
'
/harmony/dev.html
'
:
'
/tutorial/harmony/dev.html
'
,
...
...
@@ -108,12 +108,18 @@ const routerMap = {
'
/uni-app-x/
'
:
'
https://doc.dcloud.net.cn/uni-app-x/
'
}
function
fileNameToLowerCase
(
path
)
{
return
path
.
replace
(
/
\/[\w
-
]
+
\.(
html|md
)
/
,
(
$1
)
=>
{
return
$1
.
toLocaleLowerCase
()
})
}
export
default
({
fullPath
,
path
,
hash
})
=>
{
fullPath
=
decodeURIComponent
(
fullPath
)
const
matchFullPath
=
routerMap
[
fullPath
.
replace
(
'
?id=
'
,
'
#
'
).
replace
(
'
.html
'
,
''
)];
if
(
matchFullPath
)
{
return
{
path
:
matchFullPath
,
path
:
fileNameToLowerCase
(
matchFullPath
)
,
replace
:
true
}
}
...
...
@@ -121,7 +127,7 @@ export default ({ fullPath, path, hash }) => {
const
matchPath
=
routerMap
[
path
]
||
routerMap
[
path
.
replace
(
'
.html
'
,
''
)]
if
(
matchPath
)
{
return
{
path
:
matchPath
,
path
:
fileNameToLowerCase
(
matchPath
)
,
hash
,
replace
:
true
}
...
...
@@ -129,7 +135,7 @@ export default ({ fullPath, path, hash }) => {
if
(
path
.
indexOf
(
'
/app-
'
)
===
0
||
path
.
indexOf
(
'
/android-
'
)
===
0
||
path
.
indexOf
(
'
/ios-
'
)
===
0
)
{
return
{
path
:
`/tutorial
${
path
}
`
,
path
:
`/tutorial
${
fileNameToLowerCase
(
path
)
}
`
,
hash
,
replace
:
true
}
...
...
@@ -140,11 +146,12 @@ export default ({ fullPath, path, hash }) => {
routerMapKeys
.
forEach
(
key
=>
{
if
(
path
.
indexOf
(
key
)
===
0
&&
routerMap
[
key
].
indexOf
(
key
)
!==
0
&&
routerMap
[
key
]
!==
path
)
{
return
returnPathConfig
=
{
path
:
path
.
replace
(
key
,
routerMap
[
key
]),
// fixed: 文件名转为小写
path
:
fileNameToLowerCase
(
path
.
replace
(
key
,
routerMap
[
key
])),
hash
,
replace
:
true
}
}
})
if
(
returnPathConfig
)
return
returnPathConfig
}
\ No newline at end of file
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录