Как настроить параметры при использовании «вперед: /» - PullRequest
0 голосов
/ 07 июня 2018

У меня есть следующий код Spring ...

@GetMapping("/error")
public String getError(HttpServletRequest request, HttpServletResponse response){
    ...
    return "forward:/";
}
@GetMapping("")
String get( ){ return "index"; }

Мой маршрутизатор VueJS выглядит следующим образом ...

const routes = [
    {
        path: '/',
        component: Viewport,
        children: [
            {
                path:'/',
                component: Content
            },
            {
                path:'/error',
                component: Error
            }
        ]
    }
];
const router = new VueRouter({
    mode: "history",
    routes: routes
});

Но теперь я хочу передать тип следующим образом...

const routes = [
    {
        path: '/',
        component: Viewport,
        children: [
            {
                path:'/',
                component: Content
            },
            {
                path:'/error',
                component: Error,
                children: [
                    {
                        path:"/auth",
                        component: AuthError
                    }
                ]
            }
        ]
    }
];

Так что в этом случае URL должен быть /error/auth.Но я также хочу сделать еще один шаг и предоставить следующее сообщение /error/auth?message=blahblahblah

Как добавить эти значения в URL?

...