freeCodeCamp/curriculum/challenges/chinese/09-information-security/information-security-with-h.../disable-client-side-caching...

1.4 KiB

id title challengeType forumTopicId dashedName
587d8249367417b2b2512c3e 使用 helment.noCache() 禁用客户端缓存 2 301576 disable-client-side-caching-with-helmet-nocache

--description--

请注意,本项目在这个 Repl.it 项目的基础上进行开发。 你也可以从GitHub上克隆。

如果你正在为你的网站发布更新,而你希望用户总是下载较新的版本,你可以(尝试)在客户的浏览器上禁用缓存。 它在开发中也很有用。 缓存具有性能优势,你将失去这些优势,因此只有在真正需要时才使用此选项。

--instructions--

在你的服务器上使用 helmet.noCache() 方法。

--hints--

应正确加载 helmet.noCache() 中间件

(getUserInput) =>
  $.get(getUserInput('url') + '/_api/app-info').then(
    (data) => {
      assert.include(data.appStack, 'nocache');
      assert.equal(
        data.headers['cache-control'],
        'no-store, no-cache, must-revalidate, proxy-revalidate'
      );
    },
    (xhr) => {
      throw new Error(xhr.responseText);
    }
  );

--solutions--

/**
  Backend challenges don't need solutions, 
  because they would need to be tested against a full working project. 
  Please check our contributing guidelines to learn more.
*/