我如何使用角度2请求数据

时间:2017-07-10 10:06:15

标签: angular angular-http

当我们将包含JSON内容的数据发送到外部api时,会发生Access-Control-Allow-Origin错误。这个问题的解决方案是使用x-www-form-urlencoded content。 反正使用JSON了吗?

JSON内容:

    this.http.post('/api/login', {
      email: email,
      password: pass
    }).map(res => res.json())
      .subscribe(response => {
        console.log(response);
      } , error => console.error(error));
  }

x-www-form-urlencod

  this.headers.append('Content-Type', 'application/x-www-form-urlencoded');
    this.options = new RequestOptions({ headers: this.headers, method: 'post'});
    return this.http.post('/api/login', "email=info@mail.com&password=123", this.options )
        .map(res => res.json())
        .map(user => {
            if (user) {
                console.log(user);
            }
            return !!user ;
        });
}

其他解决方案:

1.在Chrome中安装Access-Control-Allow-Origin扩展程序
2.在localhost bu中寻找另一种方式的web api 3.在IIS7上启用CORS

但问题仍未解决!

1 个答案:

答案 0 :(得分:1)

WebConfig:

 <httpProtocol> <customHeaders> <add name="Access-Control-Allow-Origin" value="*" /> </customHeaders> </httpProtocol>​

WebApiConfig:

EnableCorsAttribute cors = new EnableCorsAttribute("*", "*", "GET,POST,PUT,DELETE");
config.EnableCors(cors);