看起来像我得到的职位数组罚款如下
posts: [ ] 0: { } 1: { } 2: null 3: null 4: { }
字符串不知道为什么他们中的一些是空的?我使用nextjs和无头WordPress的。任何人都知道一个解决方案跳过空?或者也许我没有调用正确的职位?提前感谢!
hfwmuf9z1#
你不能用Map如果你在Map之前过滤掉它会更好
posts .filter(x => x !== null) // this step will remove nulls .map(x => {/* your logic */})
字符串
1条答案
按热度按时间hfwmuf9z1#
你不能用Map
如果你在Map之前过滤掉它会更好
字符串