transformResponse headers参数($ resource)中缺少自定义响应的标头

gud*_*ier 7 angularjs ngresource

我已经定义了$resource一个API端点,它返回一个包含多个响应的响应,headers但在transformResponse配置函数中,headersGetter函数参数中缺少大多数标头.

我该如何解决?

API的响应标头

HTTP/1.1 201 Created
Server: Apache-Coyote/1.1
x-content-type-options: nosniff
x-xss-protection: 1; mode=block
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
x-frame-options: DENY
Access-Control-Allow-Origin: http://localhost:9000
access-control-allow-methods: POST, PUT, GET, DELETE, OPTIONS
access-control-allow-headers: Content-Type
Access-Control-Allow-Credentials: true
Content-Disposition: attachment; filename="testCall.pcap"
FileName: testCall.pcap
Content-Type: application/pcap
Run Code Online (Sandbox Code Playgroud)

transformResponse的标题

Pragma: no-cache
Content-Type: application/pcap
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Expires: 0
Run Code Online (Sandbox Code Playgroud)
app.factory("MyService", function ($resource, ENV, _) {
    return {
        testCall: $resource(ENV.apiEndpoint + "/test-call", {}, {
            launch: {
                method: 'POST',
                isArray: false,
                headers:{'Accept':'application/octet-stream'},
                responseType: 'blob',
                cache: false,
                transformResponse: function(data, headers){
                    var filename = headers('Content-Disposition'); //headers('FileName')
                    var contentType = headers('Content-Type');

                    var file = new Blob([data], {
                        type: contentType
                    });

                    var fileURL = URL.createObjectURL(file);
                    var a         = document.createElement('a');
                    a.href        = fileURL;
                    a.target      = '_blank';
                    a.download    = filename;
                    document.body.appendChild(a);
                    a.click();
                }
            }
        }),
        searchOptions: $resource(ENV.apiEndpoint + "//search-options")
    };
});
Run Code Online (Sandbox Code Playgroud)

Joe*_*Lau 12

假设您正在进行CORS调用,响应标头并非全部暴露.服务器端需要在CORS过滤器中添加响应头"Access-Control-Expose-Headers".

例如,要通过CORS调用读取名为"X-MY-HEADER1"和"X-MY-HEADER2"的自定义响应头,服务器添加头

Access-Control-Expose-Headers: "X-MY-HEADER1, X-MY-HEADER2"

请参阅@nancoder的答案,网址为/sf/answers/1660844671/