We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
3.7.2 使用springboot3的分支
constant.ts中export const PAGE_NOT_FOUND_NAME = 'PageNotFound'; ,在basic.ts文件引用的时候,重复引用导致路由报错
// 404 on a page export const PAGE_NOT_FOUND_ROUTE: AppRouteRecordRaw = { path: '/:path(.)', name: PAGE_NOT_FOUND_NAME, component: LAYOUT, meta: { title: 'ErrorPage', hideBreadcrumb: true, hideMenu: true, }, children: [ { path: '/:path(.)', name: PAGE_NOT_FOUND_NAME + '_child', component: EXCEPTION_COMPONENT, meta: { title: 'ErrorPage', hideBreadcrumb: true, hideMenu: true, }, }, ], };
The text was updated successfully, but these errors were encountered:
你不是主干吧 这个问题修复过了
Sorry, something went wrong.
No branches or pull requests
版本号:
3.7.2 使用springboot3的分支
问题描述:
constant.ts中export const PAGE_NOT_FOUND_NAME = 'PageNotFound';
,在basic.ts文件引用的时候,重复引用导致路由报错
// 404 on a page
export const PAGE_NOT_FOUND_ROUTE: AppRouteRecordRaw = {
path: '/:path(.)',
name: PAGE_NOT_FOUND_NAME,
component: LAYOUT,
meta: {
title: 'ErrorPage',
hideBreadcrumb: true,
hideMenu: true,
},
children: [
{
path: '/:path(.)',
name: PAGE_NOT_FOUND_NAME + '_child',
component: EXCEPTION_COMPONENT,
meta: {
title: 'ErrorPage',
hideBreadcrumb: true,
hideMenu: true,
},
},
],
};
错误截图:
友情提示:
The text was updated successfully, but these errors were encountered: