Angular 2 http请求在新系统上提供暂挂/取消状态

时间:2016-05-09 10:26:54

标签: node.js google-chrome http express angular

我发送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' }
])

0 个答案:

没有答案