mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
fix(built-in): 规范 beforeRender 逻辑,如果异常,则不应该执行后续的 router.beforeEach (#179)
* fix: 修复watermark插件类型问题 * fix(built-in): 避免在beforeRender action中操作路由或者location.href,构建后会出现卡死 * feat: 换更合理的方式
This commit is contained in:
parent
c2279fac48
commit
bddff450b7
@ -39,7 +39,9 @@ export const createRouter = (routes) => {
|
||||
|
||||
let isInit = false
|
||||
router.beforeEach(async (to, from, next) => {
|
||||
if(!isInit) {
|
||||
if(isInit){
|
||||
return next()
|
||||
}
|
||||
isInit = true
|
||||
const beforeRenderConfig = plugin.applyPlugins({
|
||||
key: "beforeRender",
|
||||
@ -49,7 +51,9 @@ export const createRouter = (routes) => {
|
||||
action: null
|
||||
},
|
||||
});
|
||||
if (typeof beforeRenderConfig.action === "function") {
|
||||
if (typeof beforeRenderConfig.action !== "function") {
|
||||
return next();
|
||||
}
|
||||
const rootElement = document.createElement('div');
|
||||
document.body.appendChild(rootElement)
|
||||
const app = createApp(beforeRenderConfig.loading);
|
||||
@ -57,16 +61,15 @@ export const createRouter = (routes) => {
|
||||
try {
|
||||
const initialState = await beforeRenderConfig.action({router, history});
|
||||
updateInitialState(initialState || {})
|
||||
next();
|
||||
} catch(e){
|
||||
next(false);
|
||||
console.error(`[fes] beforeRender执行出现异常:`);
|
||||
console.error(e);
|
||||
}
|
||||
app.unmount();
|
||||
app._container.innerHTML = '';
|
||||
document.body.removeChild(rootElement);
|
||||
}
|
||||
}
|
||||
next();
|
||||
})
|
||||
|
||||
plugin.applyPlugins({
|
||||
|
Loading…
x
Reference in New Issue
Block a user