搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

Unable to download multiple files from website after upgrading to the Firefox 65

  • 7 个回答
  • 1 人有此问题
  • 24 次查看
  • 最后回复者为 pratRockss

more options

I have designed a website, which downloads two files.

1. test.txt 2. test.log

I was working good before i upgraded the Firefox to version 65.0.1

Now after upgrading, only the test.log file gets downloaded. Other file is not downloaded. Is there any settings can be done for downloading multiple files ?

I have designed a website, which downloads two files. 1. test.txt 2. test.log I was working good before i upgraded the Firefox to version 65.0.1 Now after upgrading, only the test.log file gets downloaded. Other file is not downloaded. Is there any settings can be done for downloading multiple files ?

所有回复 (7)

more options

Are you downloading the files one at a time, or together? Are you using a download add-on or program?

more options

I am using program as below to download files.

let fileName = 'test.txt';
                                               let Lurl = window.URL.createObjectURL(blobLog);
                                               let Le = document.createElement('a');
                                               Le.setAttribute('href', Lurl);
                                               Le.setAttribute('download', fileName);


let fileName = 'test.log';
                                               let Lurl = window.URL.createObjectURL(blobLog);
                                               let Le = document.createElement('a');
                                               Le.setAttribute('href', Lurl);
                                               Le.setAttribute('download', fileName);

I download files one by one.

more options

I called for more help.

more options

FredMcD said

I called for more help.

I didn't get.

more options

I don't know the coding you are using, so I called for more help.

more options

Did you check the Web Console for related messages?

Can you post a link to a publicly accessible page (i.e. no authentication or signing on required) so we can test if/how it works?

Maybe you need to call URL.revokeObjectURL before creating a new object.

more options

cor-el said

Did you check the Web Console for related messages? Can you post a link to a publicly accessible page (i.e. no authentication or signing on required) so we can test if/how it works? Maybe you need to call URL.revokeObjectURL before creating a new object.

I have tried above solution but didn't solve the issue. When I try to export the files, on the console I Find below behavior.

1. All content on the console gets removed (like previous logs since application has launched) and prints below:

Source map error: request failed with status 404 Resource URL: http://localhost:4200/#/home/configuration Source Map URL: index.css.map[Learn More]

Source map error: TypeError: NetworkError when attempting to fetch resource. Resource URL: null Source Map URL: ref-parser.min.js.map[Learn More]

Could you help. It's difficult to provide the access to application.