How to get the name of a file downloaded with Angular $http?

前端 未结 10 902
一生所求
一生所求 2021-02-01 15:36

I\'ve written code that uses Angular $http to download a file. The name of the file is not specified in the URL. The URL contains a unique identifier for the file, wh

10条回答
  •  误落风尘
    2021-02-01 16:29

    Use response.headers to get http response headers:

    $http.get(myUrl).then(function (response) {
        // extract filename from response.headers('Content-Disposition')
    } 
    

提交回复
热议问题