【发布时间】:2016-12-17 08:13:44
【问题描述】:
我有一个运行 Visual Studio Code 的 Angular2/TypeScript 应用程序。
在 VS 2015 中运行的 API。这是 API 项目:http://www.asp.net/web-api/overview/security/individual-accounts-in-web-api
我可以使用 API 并创建新用户,但是当我尝试登录(使用 Token 功能)时,我收到以下错误: XMLHttpRequest 无法加载https://localhost:44305/Token。预检响应包含无效的 HTTP 状态代码 400
标题如下所示:
Request URL:https://localhost:44305/Token
Request Method:OPTIONS
Status Code:400
Remote Address:[::1]:44305
Response Headers
cache-control:no-cache
content-length:34
content-type:application/json;charset=UTF-8
date:Wed, 10 Aug 2016 19:12:57 GMT
expires:-1
pragma:no-cache
server:Microsoft-IIS/10.0
status:400
x-powered-by:ASP.NET
x-sourcefiles:=?UTF-8?B?QzpcQ2hlY2tvdXRcQVBJXzJ2czJcQVBJXEFQSVxUb2tlbg==?=
Request Headers
:authority:localhost:44305
:method:OPTIONS
:path:/Token
:scheme:https
accept:*/*
accept-encoding:gzip, deflate, sdch, br
accept-language:en-US,en;q=0.8,da;q=0.6,nb;q=0.4
access-control-request-headers:authorization
access-control-request-method:POST
cache-control:no-cache
origin:http://evil.com/
pragma:no-cache
referer:http://localhost:3000/signin
user-agent:Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36
我的 Angular 服务如下所示:
loginAccount(account: Account): Observable<string> {
var obj = { Email: account.Email, Password: account.Password, grant_type: 'password' };
let headers = new Headers({ 'Content-Type': 'application/json' });
let options = new RequestOptions( {method: RequestMethod.Post, headers: headers });
let body = JSON.stringify(obj);
console.log('loginAccount with:' + body);
return this._http.post('https://localhost:44305/Token', body, options)
.map(this.extractData)
.catch(this.handleError);
}
当我使用 API 项目中的 AJAX 功能时:http://www.asp.net/web-api/overview/security/individual-accounts-in-web-api 那么它工作正常吗?我在 Angular POST 请求中做错了什么?
【问题讨论】:
标签: api angular typescript