为http请求创建标头

时间:2017-06-23 01:25:57

标签: angular http

我想为http get请求创建一个标头,该标头应具有以下键和值

enter image description here

目前我这样做是为了实现它:

table.add(settingsButton).width(Value.percentWidth(0.5f, table));

但这是401未经授权的回应。但是在邮递员中它正在发挥作用。

1 个答案:

答案 0 :(得分:2)

您可以添加

等标题
 let headers = new Headers();
    headers.append('Content-Type', 'application/json');
    headers.append('Authorization': api_token);

    let options = new RequestOptions({ headers: headers });

    return this.http
        .get(url, options);