correct if json
This commit is contained in:
parent
f0f5be40e9
commit
2592598ce3
@ -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();
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user