通过匹配对象属性过滤 API 对象数组
我试图根据动态数组中的值是否与静态数组匹配来有条件地过滤当前数组。
nfts
是我的动态数组,它根据用户而变化。该数组包含所有元数据、图像、交易信息等。具体来说,我的目标是 nfts.meta.name
,它返回一个字符串,例如。 Moonwalker #2
isLinked
是静态数组,有一些预先确定的字符串可能与第一个数组的 nfts.meta.name 属性匹配,也可能不匹配。
我可以让它返回所有已过滤的 nfts.meta.name 属性的列表,但我需要返回整个新的已过滤的 nfts 数组,而不仅仅是返回meta.names
。
有谁知道解决这个问题的方法吗?这是我获取过滤后的 nft.meta.name 的代码
const filter = () => {
const nftsId = nfts.map(x=> x.meta.name) //"Moonwalker #2", "Moonwalker #3",
const isLinked = songList.map(x => x.id)//"Moonwalker #2", "Moonwalker 42"
const filteredData = nftsId.filter((val) => {
if (hasNFTs)return isLinked.find((a) => {
return val == a
console.log(filteredData) //"Moonwalker #2"
})
})
}
I am trying to filter my current array conditionally based on if values from a dynamic array match my static array.
nfts
is my dynamic array, this changes based on user. This array contains all the metadata, images, transaction information etc. Specifically I am targeting nfts.meta.name
, which returns a string eg. Moonwalker #2
isLinked
is the static array, there are pre determined strings that may or may not match nfts.meta.name properties of the first array.
I can get it to return a list of all the filtered nfts.meta.name
properties, but I need the whole of the new filtered nfts
array to be returned, not just the meta.names
.
Does anyone know a way around this ? Here is my code for getting the filtered nft.meta.name's
const filter = () => {
const nftsId = nfts.map(x=> x.meta.name) //"Moonwalker #2", "Moonwalker #3",
const isLinked = songList.map(x => x.id)//"Moonwalker #2", "Moonwalker 42"
const filteredData = nftsId.filter((val) => {
if (hasNFTs)return isLinked.find((a) => {
return val == a
console.log(filteredData) //"Moonwalker #2"
})
})
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
谢谢您的评论,您说得很对,我需要过滤 nfts 数组而不是 nftsId 数组。我的最终代码如下所示 这为
我提供了所有数组属性,而不仅仅是 nfts.meta.name 属性!
Thankyou for the comment, you were spot on, I needed to filter nfts array not nftsId array. My final code for this looks like this
This gives me all the array properties, not just the nfts.meta.name properties!