我在Angular2 TypeScript中有这个代码,我试图添加如下所示的标题。
['access-token', localStorage.getItem( 'token' )],
['client', localStorage.getItem( 'client' )],
['uid', localStorage.getItem( 'email' )],
['withCredentials', 'true'],
['Accept', 'application/json'],
['Content-Type', 'application/json' ]
发送请求时,我无法在请求中看到标题。 我正在进行跨域设置。还有其他方法吗?
private _request(url: string | Request, options?: RequestOptionsArgs) : Observable<Response> {
let request:any;
let reqOpts = options || {};
let index:any;
if(!reqOpts.headers) {
reqOpts.headers = new Headers();
}
for( index in this._config.authHeaders ) {
reqOpts.headers.set( this._config.authHeaders[index][0], this._config.authHeaders[index][1] );
}
request = this.http.request(url, reqOpts);
return request;
}
答案 0 :(得分:5)
如果您的请求是跨域请求,则适用CORS概念。您可以查看这些链接以获取更多详细信息:http://restlet.com/blog/2015/12/15/understanding-and-using-cors/和http://restlet.com/blog/2016/09/27/how-to-fix-cors-problems/。当然,正如Günter所说,服务器端可以做一些事情来返回CORS标头,以便让浏览器处理响应。
以下是在HTTP请求中添加标头的示例服务:
export class MyService {
constructor(private http:Http) {
}
createAuthorizationHeader(headers:Headers) {
headers.append('Authorization', 'Basic ' +
btoa('a20e6aca-ee83-44bc-8033-b41f3078c2b6:c199f9c8-0548-4be7-9655-7ef7d7bf9d33'));
}
getCompanies() {
var headers = new Headers();
this.createAuthorizationHeader(headers);
return this.http.get('https://angular2.apispark.net/v1/companies/', {
headers: headers
}).map(res => res.json());
}
修改强>
我刚看到您尝试设置withCredential
标头。我认为你混合了不同的东西。 withCredentials
不是标准标头,但XHR JavaScript对象上有withCredentials
属性。请看这个链接:https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/withCredentials。这应该不使用withCredentials
自定义标题。
提醒一下,如果您想使用自定义标头,则需要在Access-Control-Allow-Headers
标头内的服务器端添加它。
希望它可以帮到你, 亨利