Я использую angular 9 для проекта, который отлично работает в браузере. Я пытаюсь получить доступ к маршруту через POSTMAN, но получаю ошибку. Как сделать маршрут доступным через CLI?
Вот мои маршруты
const routes: Routes = [
{path:'', component: JoinClassComponent},
{path:'home', component: HomeComponent},
{path:'login', component: LoginComponent},
{path:'class-ended', component: ClassEndedComponent},
// otherwise redirect to home
{path:'**', component: JoinClassComponent},
];
Вот компонент
import { Component, OnInit } from '@angular/core';
import { ActivatedRoute } from '@angular/router';
@Component({
selector: 'app-class-ended',
templateUrl: './class-ended.component.html',
styleUrls: ['./class-ended.component.css']
})
export class ClassEndedComponent implements OnInit {
constructor(private route: ActivatedRoute) { }
ngOnInit(): void {
const classID: string = this.route.snapshot.queryParamMap.get('meetingID');
//rest of the logic
}
}
URL не работает в POSTMAN
URL работает в браузере
/ маршрут работает в POSTMAN