在元件中匯入包:
import Cookies from 'js-cookie';複製程式碼
通常登陸後ajax請求到使用者資料,將資料儲存在cookie中
儲存,獲取,刪除cookie:
componentDidMount () { Cookies.set('name', 'hy'); Cookies.set('obj', { name: 'hy', age: 21 }) console.log(Cookies.get('name')); console.log(JSON.parse(Cookies.get('obj')));}複製程式碼
handleCookieDelete = () => { Cookies.remove('name'); // 刪除cookie}複製程式碼