猿问

来自 Github API 的奇怪响应(条件请求)

所以我正在尝试从 Github API 检索 React 应用程序的回购数据。由于 API 的速率限制,我正在尝试使用条件请求来检查自上次请求以来数据是否已被修改,使用If-Modified-Since标头。


到目前为止,这是我的测试代码:


const date = new Date().toUTCString();



fetch('https://api.github.com/users/joshlucpoll/repos', {

  headers: {'If-Modified-Since': date}

  })

  .then((res) => {

    let headers = res.headers;

    console.log(headers)

    if (headers.get('status') === "304 Not Modified") {

      console.log("Not modified")

    }

    else {

      console.log("modified")

    }

  });

每次运行此代码时,我都会得到一个200 OK状态,而不是304 Not Modified预期的状态。资源在运行代码时无法更新,但是,它始终输出“未修改”...


我不明白为什么这不起作用,我们将不胜感激!


慕容森
浏览 79回答 1
1回答

哈士奇WWW

这里的问题是您处理状态的方式。这是关于如何实施的一些设置:https ://codesandbox.io/s/wizardly-banzai-pi8to?file=/src/index.jsconst date = new Date().toUTCString();fetch("https://api.github.com/users/joshlucpoll/repos", {  headers: { "If-Modified-Since": date }}).then((res) => {  console.log(res.status);});可以在响应本身内部检索状态,它不嵌套在标头中。你会看到的值为res.status304,res.headers.get("status")会返回null
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答