gpt4 book ai didi

reactjs - React map 不是渲染数组而是 console.logs

转载 作者:行者123 更新时间:2023-12-03 17:10:03 26 4
gpt4 key购买 nike

在此 map 内没有渲染发生,但 console.log 打印数组元素。

{(repos.length > 0) ? repos.flatMap((v, i) => {

if (e1 === (v[2]) && v[1].length>0) {
v[1].map((e)=>{
console.log(e)
<div></div>//no view rendering..
在控制台上打印这些
dashboard.tsx?91c8:646 (2) ["0x78Ba3149274C76921249200c090cCFCF3Cc86e85", "0"]
dashboard.tsx?91c8:646 (2) ["0x4DD660E14E9d90eE5180b49c5833D4d0f5295daa", "0"]
这也没有渲染
v[1].map((e)=>("assasasa"))
看一下这个
https://codesandbox.io/s/sweet-architecture-ljo89?file=/src/App.js

最佳答案

您没有在 map 内返回结果

 return (
<div className="App">
{box.map((e) => {
return box.map((e) => {
return "aassssaa";
});
//return ("aaaa")
})}
<h1>Hello CodeSandbox</h1>
<h2>Start editing to see some magic happen!</h2>
</div>
);
代码 - https://codesandbox.io/s/hopeful-frog-n664n?file=/src/App.js:143-415

关于reactjs - React map 不是渲染数组而是 console.logs,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64941910/

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