Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Learn More

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

  • 7 ответов
  • 1 имеет эту проблему
  • 27 просмотров
  • Последний ответ от 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.