Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
A
app-manage-console
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
ReactNative
app-manage-console
Commits
daec40e8
提交
daec40e8
authored
12月 05, 2017
作者:
vipcxj
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
支持跳转api不自动拼接context path
上级
e1a65d56
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
13 行增加
和
13 行删除
+13
-13
route.js
src/services/route.js
+13
-13
没有找到文件。
src/services/route.js
浏览文件 @
daec40e8
...
...
@@ -5,21 +5,21 @@ import config from '../utils/config';
const
{
contextPath
}
=
config
;
const
makePath
=
(
base
,
path
)
=>
{
const
makePath
=
(
base
,
path
,
withContext
=
true
)
=>
{
if
(
path
.
startsWith
(
'/'
))
{
return
`
${
contextPath
}${
path
}
`
;
return
withContext
?
`
${
contextPath
}${
path
}
`
:
path
;
}
const
basePath
=
base
.
endsWith
(
'/'
)
?
base
:
`
${
base
}
/`
;
return
resolvePathname
(
path
,
basePath
);
};
const
processPath
=
(
base
,
path
)
=>
{
const
processPath
=
(
base
,
path
,
withContext
=
true
)
=>
{
if
(
isString
(
path
))
{
return
makePath
(
base
,
path
);
return
makePath
(
base
,
path
,
withContext
);
}
return
{
...
path
,
pathname
:
makePath
(
base
,
path
.
pathname
),
pathname
:
makePath
(
base
,
path
.
pathname
,
withContext
),
};
};
...
...
@@ -41,12 +41,12 @@ history.listen((loc) => {
location
.
hash
=
loc
.
hash
;
});
export
const
push
=
(
path
,
state
)
=>
{
return
history
.
push
(
processPath
(
getHistoryBase
(
history
),
path
),
state
);
export
const
push
=
(
path
,
state
,
withContext
=
true
)
=>
{
return
history
.
push
(
processPath
(
getHistoryBase
(
history
),
path
,
withContext
),
state
);
};
export
const
replace
=
(
path
,
state
)
=>
{
return
history
.
replace
(
processPath
(
getHistoryBase
(
history
),
path
),
state
);
export
const
replace
=
(
path
,
state
,
withContext
=
true
)
=>
{
return
history
.
replace
(
processPath
(
getHistoryBase
(
history
),
path
,
withContext
),
state
);
};
export
const
go
=
(
n
)
=>
{
...
...
@@ -81,15 +81,15 @@ const getThisBase = (theThis) => {
}
};
export
const
thisPush
=
(
theThis
,
pathOrLoc
)
=>
{
export
const
thisPush
=
(
theThis
,
pathOrLoc
,
withContext
=
true
)
=>
{
checkThis
(
theThis
);
const
route
=
processPath
(
getThisBase
(
theThis
),
pathOrLoc
);
const
route
=
processPath
(
getThisBase
(
theThis
),
pathOrLoc
,
withContext
);
return
theThis
.
props
.
router
.
push
(
route
);
};
export
const
thisReplace
=
(
theThis
,
pathOrLoc
)
=>
{
export
const
thisReplace
=
(
theThis
,
pathOrLoc
,
withContext
=
true
)
=>
{
checkThis
(
theThis
);
const
route
=
processPath
(
getThisBase
(
theThis
),
pathOrLoc
);
const
route
=
processPath
(
getThisBase
(
theThis
),
pathOrLoc
,
withContext
);
return
theThis
.
props
.
router
.
replace
(
route
);
};
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论