Привет есть проблема с тем что есть ссылка на rss ленту, когда открываем в браузере работает норм, а когда питаешься получить через js
mounted() {
fetch("https://www.yahoo.com/news/rss")
.then((response) => response.text())
.then((data) => {
const parser = new DOMParser();
const xml = parser.parseFromString(data, "application/xml");
console.log(xml);
})
.catch(console.error);
}
,
выдает ошибку:
Access to fetch at '
https://www.yahoo.com/news/rss' from origin '
localhost:8080' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled.