gpt4 book ai didi

javascript - 如何在 react 中使用 console.log

转载 作者:行者123 更新时间:2023-12-05 04:34:33 28 4
gpt4 key购买 nike

我是新手,我有一个获取操作,我想在使用它之前使用 console.log 检查来自 api 的数据,就像在 javascript 中一样,但我不知道如何在 react 中做...任何帮助?

const [all, setAll]=React.useState([])

React.useEffect(()=>{
fetch('https://api.themoviedb.org/3/trending/all/day?api_key=key')
.then(data=>{
return data.json()
}).then(completedata=>{
setAll(completedata)

})
.catch((err) => {
console.log(err.message);

})

},[1])
console.log(all)

最佳答案

还是Javascipt,在promise链中使用console.log(data.results),或者在useEffect中使用all状态 Hook 依赖于 all 状态。

const [all, setAll] = React.useState([]);

React.useEffect(() => {
fetch('https://api.themoviedb.org/3/trending/all/day?api_key=key')
.then(data => {
return data.json();
})
.then(data => {
setAll(data.results);
console.log(data.results);
})
.catch((err) => {
console.log(err.message);
});
},[]);

const [all, setAll] = React.useState([]);

useEffect(() => {
console.log(all);
}, [all]);

关于javascript - 如何在 react 中使用 console.log,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71193365/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com