问题 I have the Groceries tutorial, working. Then I go to the user service and change the URL of the login: login(user: User) { let headers = new Headers(); headers.append("Content-Type", "application/json"); return this.http.post( "http://ws.u-vox.com/api/noauth/loginvenue", JSON.stringify({ username: user.email, password: user.password, }), { headers: headers } ) .map(response => response.json()) .do(data => { Config.token = data.Result.access_token; }) .catch(this.handleErrors); } handleErrors