如何在 ReactJS 中存储单个缓存数据?
我们可以在 ReactJS 中使用以下方法将单个数据存储到 ReactJS 中的缓存中。我们可以将一些数据缓存到浏览器中,并在需要时在我们的应用程序中使用它。缓存是一种技术,可以帮助我们将给定资源的副本存储到浏览器中,并在请求时将其返回。
方法:按照这些简单的步骤将单个数据存储到 ReactJS 中的缓存中。我们创建了addDataIntoCache函数,它将用户数据存储到浏览器缓存中。当我们点击按钮时,该函数被触发,数据被存储到缓存中,我们看到一个警报弹出窗口。
创建反应应用程序:
第 1 步:使用以下命令创建一个 React 应用程序:
npx create-react-app foldername
第 2 步:创建项目文件夹(即文件夹名称)后,使用以下命令移动到该文件夹:
cd foldername
项目结构:它将如下所示。
示例:现在在App.js文件中写下以下代码。在这里,App 是我们编写代码的默认组件。
App.js
import * as React from 'react';
export default function App() {
// Function to add our give data into cache
const addDataIntoCache = (cacheName, url, response) => {
// Converting our response into Actual Response form
const data = new Response(JSON.stringify(response));
if ('caches' in window) {
// Opening given cache and putting our data into it
caches.open(cacheName).then((cache) => {
cache.put(url, data);
alert('Data Added into cache!')
});
}
};
return (
How to store data into cache in ReactJS?
);
}
运行应用程序的步骤:从项目的根目录使用以下命令运行应用程序:
npm start
输出:现在打开浏览器并转到http://localhost:3000/ ,您将看到以下输出: