我发送http请求如下
this.http.post('/api/login', body)
.subscribe(
response => {
...
},
error=> {
...
});
但是在新系统中,它会暂停,然后有时会取消gots。
加载一次后,再也不会在该系统上发生并正常工作。 基本上我将所有客户端路由重定向到index.html。如下:
app.get(['/', '/login', '/dashboard'],function(req, res, next){
res.sendFile(path.join(__dirname,'/../public/index.html'));
});
'/', '/login', '/dashboard'
是我客户端的路由。如下:
@RouteConfig([
{ path: '/', redirectTo: ['/Dashboard'] },
{ path: '/login', component: Login, as: 'Login' },
{ path: '/dashboard', component: Dashboard, as: 'Dashboard' }
])