correct if json

This commit is contained in:
Anatoly Prohacky 2023-04-23 19:24:28 +10:00
parent f0f5be40e9
commit 2592598ce3

View File

@ -51,10 +51,9 @@
let formData = new FormData();
formData.append("file", file);
let fileDown = file.name.replace(/\.[^.]+$/, "")
let fileRes = file.name.split('').reverse().join('').split('.')[0].split('').reverse().join('');
if (fileRes != "json") {
alert(`Format file not json`);
if (file.type != "application/json") {
alert(`Формат файла должен быть ".json"`);
return
}
@ -64,7 +63,7 @@
})
.then(response => {
if (!response.ok) {
throw new Error(`HTTP ${response.status} - ${response.body}`);
throw new Error(`HTTP ${response.status} - Конвертирование не удалось. Неизвестный формат данных.`);
}
return response.blob();
})