我有这个错误 Uncaught (in promise) TypeError: Failed to fetch

时间:2021-02-10 06:38:43

标签: javascript fetch blogger

如果我问了很多,但我需要帮助,我很抱歉。 我使用了这个脚本,它工作正常,但在控制台中我有这个错误:{Uncaught (in promise) TypeError: Failed to fetch} 谁能告诉我我的错误在哪里。

fetch('/feeds/posts/default?alt=json')
.then(response => response.json())
.then(data => {
  var authorPosts = data.feed.entry.filter(e => e.author[0].name.$t === "mark wael");
  var len=authorPosts.length;
  console.log(len);
  $(".authorPostsCount").append(len);
});
------------------
<span class='authorPostsCount'/>

感谢您的帮助

1 个答案:

答案 0 :(得分:0)

我认为您使用 fetch 的方式不正确! fetch 用于 HTTP 请求,因此您需要将 URL 指定为我认为的参数。

检查 MDN 网站上的链接 https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch