我想调用一个异步函数并获取我的 UseEffect 的结果。
我在网上找到的fetch api例子是直接在useEffect函数中制作的。如果我的 URL 发生变化,我必须修补我所有的提取。
当我尝试时,我收到一条错误消息。
这是我的代码。
async function getData(userId) {
const data = await axios.get(`http://url/api/data/${userId}`)
.then(promise => {
return promise.data;
})
.catch(e => {
console.error(e);
})
return data;
}
function blabla() {
const [data, setData] = useState(null);
useEffect(async () => {
setData(getData(1))
}, []);
return (
<div>
this is the {data["name"]}
</div>
);
}
index.js:1375 警告:除了用于清理的函数之外,效果函数不得返回任何内容。看起来你写了 useEffect(async () => ...) 或者返回了一个 Promise。相反,在您的效果中编写异步函数并立即调用它:
useEffect(() => {
async function fetchData() {
// You can await here
const response = await MyAPI.getData(someId);
// ...
}
fetchData();
}, [someId]); // Or [] if effect doesn't need props or state