Ionic 2 angular 2 get方法工作正常。但是post方法抛出400 Bad request

时间:2017-06-30 19:46:17

标签: angular ionic2

当我们将get methos称为显示结果时。

当我们尝试使用post方法API登录时也是如此。它抛出的电子邮件和密码不能为空。似乎它的http.post('url',params,headers);没有发布值。任何人都可以帮助我是否有任何标题需要传递额外的或是否有任何配置设置,以使http.post工作?

 login(param) {
    let headers = new Headers({ 'Content-Type': 'application/json' });
    let options = new RequestOptions({ headers: headers });
    return this.http.post(this.apiUrl + '/login', JSON.stringify(param),     options)
     .map((res: Response) => {
        if (res) {
            return { status: res.status, json: res.json() }
        }
    });
}

0 个答案:

没有答案