• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

Underscore.js - 在嵌套的Json过滤

用户头像
it1352
帮助1

问题说明

我想得到所有值,其中category.id = 1所以我应该得到2个结果

I want to get all values, where the category.id = 1 so i should get 2 results

我的JSON看起来像这样:

My JSON looks like this:

var test = [
            {
                "id": 1,
                "name": "name1",
                "value": "value1",
                "category": {
                    "id": 1,
                    "name": "category1"
                }
            },
            {
                "id": 2,
                "name": "name2",
                "value": "value2",
                "category": {
                    "id": 1,
                    "name": "category1"
                }
            },
            {
                "id": 3,
                "name": "name3",
                "value": "value3",
                "category": {
                    "id": 2,
                    "name": "category2"
                }
            }
        ];

我的JavaScript看起来像这样:

my JavaScript looks like this:

var x = _.filter(test,
            function (innerObject) {
                return _.filter(innerObject,
                    function (category) {
                        return  category.id === 1;
                    });
            });

console.log(x);

我做了一个JS小提琴但我每次都得到所有3个元素...不仅仅是2个正确的元素!

I made a JS Fiddle but i get everytime all 3 elements back... not only the 2 correct ones!

我也尝试过像

var x = _.where(test, {"category":{"id":2}});
console.log(x);

对我来说似乎合乎逻辑,但数组总是空的

what seems to be logical for me, but the array is always empty

另一个jsFiddle

我希望有人可以告诉我我做错了什么...

谢谢!

I hope somebody can tell me what i made wrong...
Thank You!

正确答案

#1

那是因为你在哪里搜索一个完全像 {category:{id:1}} 的元素,你的对象是 {category:{id:1,name:category1}}

That's because with where you're searching for an element that is EXACTLY like {"category":{"id":1}} and your object is {"category":{"id":1,"name":"category1"}}

尝试

_.filter(test, function(a){ return a.category && a.category.id === 1; });

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcffigg
系列文章
更多 icon
同类精品
更多 icon
继续加载