diff --git a/docs/reference/plugin/plugins/layout.md b/docs/reference/plugin/plugins/layout.md index ba44c567..d8bf02ab 100644 --- a/docs/reference/plugin/plugins/layout.md +++ b/docs/reference/plugin/plugins/layout.md @@ -7,7 +7,7 @@ - 主题,提供 `light`、`dark` 两种主题。 - 默认实现对路由的 404、403 处理。 - 搭配 [@fesjs/plugin-access](./access.html) 插件使用,可以完成对路由的权限控制。 -- 搭配 [@fesjs/plugin-loacle](./locale.html) 插件使用,提供切换语言的能力。 +- 搭配 [@fesjs/plugin-locale](./locale.html) 插件使用,提供切换语言的能力。 - 支持自定义头部区域。 - 可配置页面是否需要 layout。 diff --git a/docs/zh/reference/plugin/plugins/layout.md b/docs/zh/reference/plugin/plugins/layout.md index ba44c567..d8bf02ab 100644 --- a/docs/zh/reference/plugin/plugins/layout.md +++ b/docs/zh/reference/plugin/plugins/layout.md @@ -7,7 +7,7 @@ - 主题,提供 `light`、`dark` 两种主题。 - 默认实现对路由的 404、403 处理。 - 搭配 [@fesjs/plugin-access](./access.html) 插件使用,可以完成对路由的权限控制。 -- 搭配 [@fesjs/plugin-loacle](./locale.html) 插件使用,提供切换语言的能力。 +- 搭配 [@fesjs/plugin-locale](./locale.html) 插件使用,提供切换语言的能力。 - 支持自定义头部区域。 - 可配置页面是否需要 layout。 diff --git a/packages/fes-compiler/src/service/utils/pluginUtils.js b/packages/fes-compiler/src/service/utils/pluginUtils.js index 71f8f1a0..b3f14064 100644 --- a/packages/fes-compiler/src/service/utils/pluginUtils.js +++ b/packages/fes-compiler/src/service/utils/pluginUtils.js @@ -12,8 +12,8 @@ import { import { PluginType } from '../enums'; const RE = { - [PluginType.plugin]: /^(@fesjs\/)?plugin-/, - [PluginType.preset]: /^(@fesjs\/)?preset-/ + [PluginType.plugin]: /^(@fesjs\/|@webank\/fes-|fes-)?plugin-/, + [PluginType.preset]: /^(@fesjs\/|@webank\/fes-|fes-)?preset-/ }; export function isPluginOrPreset(type, name) { diff --git a/packages/fes-plugin-locale/src/index.js b/packages/fes-plugin-locale/src/index.js index b30f0bd1..947e53bf 100644 --- a/packages/fes-plugin-locale/src/index.js +++ b/packages/fes-plugin-locale/src/index.js @@ -48,9 +48,9 @@ export default (api) => { ...api.config.locale }; - const loacleConfigFileBasePath = getLocaleFileBasePath(); + const localeConfigFileBasePath = getLocaleFileBasePath(); - const locales = getLocalesJSON(loacleConfigFileBasePath); + const locales = getLocalesJSON(localeConfigFileBasePath); api.writeTmpFile({ path: absoluteFilePath, diff --git a/packages/fes-plugin-request/src/template/resErrorProcess.js b/packages/fes-plugin-request/src/template/resErrorProcess.js index 9a1e213d..50961d49 100644 --- a/packages/fes-plugin-request/src/template/resErrorProcess.js +++ b/packages/fes-plugin-request/src/template/resErrorProcess.js @@ -5,7 +5,7 @@ export default async ({ errorHandler = {}, response }, next) => { - if (response && isObject(response.data) && response.data.code !== '0') { + if (response && isObject(response.data) && response.data.code && response.data.code !== '0') { errorHandler[response.data.code] && errorHandler[response.data.code](response); } else if (error) { if (error.type) {