如何在Angular 2中附加2个标题?

时间:2016-11-15 18:21:53

标签: angularjs rest angular

如何在该代码中追加2个标题:

 postData(json: PortfolioVO) {
      var njson = JSON.stringify(json);

      var  headers = new Headers();
    headers.append('Content-type' , 'application/json;charset=UTF-8');
    headers.append('Accept' , 'application/json');


    return this.http.post('http://www.develop.nivafex.com/rest/portfolios/en', njson,
      { headers: headers})
      .map(res => res.json());

  }

此代码不起作用。

1 个答案:

答案 0 :(得分:0)

以下是您要找的内容:

MVVM