我有一个url,用charset = iso-8859-7返回html内容,这意味着angulars http请求默认将数据转换为utf8,我无法正确地将它们编码回iso-8859-7.经过大量的搜索,我发现很多人都有同样的问题,大多数答案是改变服务器中的字符集,我无法做的事情,因为服务器不属于我.
所以问题是HTTP请求如何返回二进制文件,以便我可以将它们编码为iso-8859-7字符串?
编辑 – 解决方案:
我最后做的是在RequestOptions上使用TextDecoder和{responseType:ResponseContentType.ArrayBuffer}.这是一个示例,可以帮助任何试图解析html页面并将其解码为正确编码的人.希望能帮助所有在使用像Ionic2这样的Angular2的项目中尝试过这个的人.
public parser() { // Set content type let headers = new Headers({'Content-Type': 'application/x-www-form-urlencoded;'}); // Create a request option,with withCredentials for sending prevIoUs stored cookies let options = new RequestOptions({ withCredentials: true,headers: headers,responseType: ResponseContentType.ArrayBuffer }); return this.http.get('https://blablablablabla',options) // ...using get request .map((res: any) => { var string = new TextDecoder('iso-8859-7').decode(res._body); var parser = new DOMParser(); var htmlDoc = parser.parseFromString(string,"text/html"); console.log(string) ..... blabla blabla doing some stuff here ..... }) .catch((error: any) => Observable.throw(error || 'Server error')); }
发送请求时包括RequestOptionsArgs.
原文链接:https://www.f2er.com/angularjs/142477.html在RequestOptionsArgs中指定字段responseType : ResponseContentType
. (ResponseContentType.ArrayBuffer或ResponseContentType.Blob)
使用TextDecoder或类似的东西来解码结果.
查看文档:
https://angular.io/api/http/Http