22

我是 angular-cli 的新手,想通过 env 为我的 api 服务调用加载 url。例如

local: http://127.0.0.1:5000
dev: http://123.123.123.123:80
prod: https://123.123.123.123:443

例如在 environment.prod.ts

我假设:

export const environment = {
  production: true
  "API_URL": "prod: https://123.123.123.123:443"
};

但是从 angular2,我该如何调用才能获取 API_URL?

例如

this.http.post(API_URL + '/auth', body, { headers: contentHeaders })
      .subscribe(
        response => {
          console.log(response.json().access_token);
          localStorage.setItem('id_token', response.json().access_token);
          this.router.navigate(['/dashboard']);
        },
        error => {
          alert(error.text());
          console.log(error.text());
        }
      );
  } 

谢谢

4

2 回答 2

47

如果您查看 angular-cli 生成项目的根目录,您将在 main.ts 中看到:

import { environment } from './environments/environment';

要获取您的 api URL,您只需在服务标头中执行相同操作。

环境的路径取决于与环境文件夹相关的服务的位置。对我来说,它是这样工作的:

import { Http, Response } from '@angular/http';
import { Injectable } from '@angular/core';
import { Observable } from 'rxjs/Observable';
import { environment } from '../../environments/environment';

@Injectable()
export class ValuesService {
    private valuesUrl = environment.apiBaseUrl + 'api/values';
    constructor(private http: Http) { }

    getValues(): Observable<string[]> {
        return this.http.get(this.valuesUrl)
        .map(this.extractData)
        .catch(this.handleError);
    }

    private extractData(res: Response) {
        let body = res.json();
        return body || { };
    }

    private handleError(error: any) {
        let errMsg = (error.message) ? error.message :
        error.status ? `${error.status} - ${error.statusText}` : 'Server error';
        console.error(errMsg);
        return Observable.throw(errMsg);
    }
}
于 2016-09-26T14:19:21.077 回答
5

在 Angular 4.3 发布后,我们可以使用 HttpClient 拦截器。这种方法的优点是避免 API_URL 的导入/注入是所有带有 api 调用的服务。

有关更详细的答案,您可以在这里查看https://stackoverflow.com/a/45351690/6810805

于 2017-07-28T07:31:34.823 回答