reactjs useEffect收到的最后一个参数不是数组(而是收到的“object”)

6ojccjat  于 2022-12-29  发布在  React
关注(0)|答案(2)|浏览(394)

我们使用react-redux,并在reducer.js中设置了authUser

case types.AUTH_SET_USER:
      localStorage.setItem('authUser', JSON.stringify(payload))
      return {
        ...state,
        user: payload,
      }

当我尝试在useEffect中使用变量时收到此错误
警告:useEffect收到的最后一个参数不是数组(而是object)。如果指定,则最后一个参数必须是数组。

我的代码工作,但它返回一个警告错误在控制台:

const userAuth = JSON.parse(localStorage.getItem('authUser'))

  useEffect(() => {
    someSetFunction(userAuth))
  }, userAuth)

我已经试过这个了,console.log(userAuth)返回null

const [userAuth] = useState(JSON.parse(localStorage.getItem('authUser')))

  useEffect(() => {
    someSetFunction(userAuth))
  }, [userAuth])
a0x5cqrl

a0x5cqrl1#

如何使用本地存储和钩子的好例子:

import { useState } from "react";
// Usage
function App() {
  // Similar to useState but first arg is key to the value in local storage.
  const [name, setName] = useLocalStorage("name", "Bob");
  return (
    <div>
      <input
        type="text"
        placeholder="Enter your name"
        value={name}
        onChange={(e) => setName(e.target.value)}
      />
    </div>
  );
}
// Hook
function useLocalStorage(key, initialValue) {
  // State to store our value
  // Pass initial state function to useState so logic is only executed once
  const [storedValue, setStoredValue] = useState(() => {
    if (typeof window === "undefined") {
      return initialValue;
    }
    try {
      // Get from local storage by key
      const item = window.localStorage.getItem(key);
      // Parse stored json or if none return initialValue
      return item ? JSON.parse(item) : initialValue;
    } catch (error) {
      // If error also return initialValue
      console.log(error);
      return initialValue;
    }
  });
  // Return a wrapped version of useState's setter function that ...
  // ... persists the new value to localStorage.
  const setValue = (value) => {
    try {
      // Allow value to be a function so we have same API as useState
      const valueToStore =
        value instanceof Function ? value(storedValue) : value;
      // Save state
      setStoredValue(valueToStore);
      // Save to local storage
      if (typeof window !== "undefined") {
        window.localStorage.setItem(key, JSON.stringify(valueToStore));
      }
    } catch (error) {
      // A more advanced implementation would handle the error case
      console.log(error);
    }
  };
  return [storedValue, setValue];
}

https://usehooks.com/useLocalStorage/

bbmckpt7

bbmckpt72#

我设法解决了这个问题,谢谢你们回答我的问题,这是我所做的。
我在useEffect中使用选择器。

const authUserSelector = useSelector((state) => state.auth?.user)
const authUser = JSON.parse(localStorage.getItem('authUser'))

useEffect(() => {
    someSetFunction(authUser))
  }, [authUserSelector])

相关问题