我正在尝试使用post请求发送参数,但参数未到达以提供所需的结果并在控制台中打印null。这是我的代码
var headers = new Headers();
headers.append('Content-Type', 'application/x-www-form-urlencoded' );
let options = new RequestOptions({ headers: headers });
let postParams = {
acesscode: 'XXXXXXXXXXX',
productCode:'XXXXXXXXXX'
};
this.http.post("http://www.ebiebook.com/drmapi/v1/details", JSON.stringify(postParams), options)
.subscribe(data => {
console.log(data['_body']);
}, error => {
console.log(error);// Error getting the data
});
}
答案 0 :(得分:0)
您附加的此打印件未显示请求发送的内容,而是仅显示浏览器从服务器收到的响应。
你最好看看这个帖子,在this thread更多地了解。您必须检查Chrome控制台中的“标题”标签 - >网络