通过匹配对象属性过滤 API 对象数组

发布于 2025-01-11 00:56:36 字数 854 浏览 0 评论 0原文

我试图根据动态数组中的值是否与静态数组匹配来有条件地过滤当前数组。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

行雁书 2025-01-18 00:56:36

谢谢您的评论,您说得很对,我需要过滤 nfts 数组而不是 nftsId 数组。我的最终代码如下所示 这为

const filter = () => {
        const isLinked = songList.map(x => x.id)
        const filteredData = nfts.filter((x) => {
        if (hasNFTs)return isLinked.find((a) => {
            return x.meta.name == a
            console.log(filteredData)
        })
    })
}

我提供了所有数组属性,而不仅仅是 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

const filter = () => {
        const isLinked = songList.map(x => x.id)
        const filteredData = nfts.filter((x) => {
        if (hasNFTs)return isLinked.find((a) => {
            return x.meta.name == a
            console.log(filteredData)
        })
    })
}

This gives me all the array properties, not just the nfts.meta.name properties!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文