如何在Angular 2中发布JSON?

时间:2016-05-05 13:08:29

标签: rest typescript angular

我不明白我做错了什么,当我尝试获取json时,我的服务器返回“undefined”。

POST(url, data) {
        var headers = new Headers(), authtoken = localStorage.getItem('authtoken');
        headers.append("Content-Type", 'application/json');

        if (authtoken) {
        headers.append("Authorization", 'Token ' + authtoken)
        }
        headers.append("Accept", 'application/json');

        var requestoptions = new RequestOptions({
            method: RequestMethod.Post,
            url: this.apiURL + url,
            headers: headers,
            body: data
        })

        return this.http.request(new Request(requestoptions))
        .map((res: Response) => {
            if (res) {
                return { status: res.status, json: res.json() }
            }
        });
    }

我的功能:

login(username, password) {
        this.POST('login/', {test: 'test'}).subscribe(data => {
            console.log(data)
        })
    }

当我尝试这个时,请求正文如下所示:

enter image description here

因此,它不是发送实际的json,而是发送“[object Object]”。 它不应该是“请求有效载荷”,而应该是“JSON”。我做错了什么?

3 个答案:

答案 0 :(得分:20)

我一直在寻找一个关于在Angular中发布json数据一段时间的问题的直观答案,但无济于事。现在我终于有了一些工作,让我们分享一下:

内联

假设你期望一个类型为T的json响应体。

const options = {headers: {'Content-Type': 'application/json'}};
this.http.post<T>(url, JSON.stringify(data), options).subscribe(
    (t: T) => console.info(JSON.stringify(t))
);

Official doc

可扩展类

import { HttpClient, HttpHeaders } from '@angular/common/http';

export class MyHttpService {
  constructor(protected http: HttpClient) {}

  headers = new HttpHeaders({
    'Content-Type': 'application/json'
  });

  postJson<T>(url: string, data: any): Observable<T> {
    return this.http.post<T>(
      url,
      JSON.stringify(data),
      {headers: this.headers}
    )
  }

要点

一开始我错过了这种传递内容类型的'嵌套'方式:

{headers:{'Content-Type': 'application/json'}}

答案 1 :(得分:13)

您需要对有效负载进行字符串化

var requestoptions = new RequestOptions({
            method: RequestMethod.Post,
            url: this.apiURL + url,
            headers: headers,
            body: JSON.stringify(data)
        })

答案 2 :(得分:1)

标题应为

'Content-Type': 'application/json'

 body: data

应该是

 body: JSON.stringify(data);