作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我不明白我做错了什么,当我尝试获取 json 时,我的服务器返回“未定义”。
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)
})
}
当我尝试这样做时,请求正文如下所示:
因此它没有发送实际的 json,而是发送“[object Object]”。而不是“请求有效负载”,它应该是“JSON”。我做错了什么?
最佳答案
一段时间以来,我一直在寻找在 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))
);
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'}}
关于rest - 我如何在 Angular 2 中发布 JSON?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37051476/
我是一名优秀的程序员,十分优秀!