Update
This commit is contained in:
parent
d3c9a28c3b
commit
a7cb70c211
|
@ -78,10 +78,11 @@ async function bodyFetch(url) {
|
||||||
let response = await fetch(tplUrl);
|
let response = await fetch(tplUrl);
|
||||||
let body = document.getElementById('body');
|
let body = document.getElementById('body');
|
||||||
|
|
||||||
|
if(tplUrl == 'news.tpl.html') {let res = await fetchData();}
|
||||||
|
|
||||||
if (response.ok) { // если HTTP-статус в диапазоне 200-299
|
if (response.ok) { // если HTTP-статус в диапазоне 200-299
|
||||||
// получаем тело ответа (см. про этот метод ниже)
|
// получаем тело ответа (см. про этот метод ниже)
|
||||||
let text = await response.text();
|
let text = await response.text();
|
||||||
if (tplUrl == 'news.tpl.html') {await fetchData();}
|
|
||||||
body.innerHTML = text;
|
body.innerHTML = text;
|
||||||
} else {
|
} else {
|
||||||
body.innerHTML = "Ой всё сломалось :(";
|
body.innerHTML = "Ой всё сломалось :(";
|
||||||
|
@ -139,10 +140,12 @@ let fetchPage = async function(evt) {
|
||||||
const linkText = this.text.trim();
|
const linkText = this.text.trim();
|
||||||
const title = document.title + ": " + linkText;
|
const title = document.title + ": " + linkText;
|
||||||
|
|
||||||
|
if (tplUrl == 'news.tpl.html') {let res = await fetchData();}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const response = await fetch(tplUrl, { signal });
|
const response = await fetch(tplUrl, { signal });
|
||||||
text = await response.text();
|
text = await response.text();
|
||||||
if (tplUrl == 'news.tpl.html') {await fetchData();}
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
// DOMException: The user aborted a request.
|
// DOMException: The user aborted a request.
|
||||||
console.log('Error: ', error)
|
console.log('Error: ', error)
|
||||||
|
|
Loading…
Reference in New Issue