繁体   English   中英

使用Underscorejs从json提取值

[英]extracting values from json using Underscorejs

我有一个JSON从中我需要筛选其的对象name值所传递的输入相匹配,然后摘去href值从相应的links对象具有ref的值self 我将附加代码段以及我的过滤方法。 我正在使用Underscore.js

var jsonObj = [
{
  "links": [
    {
      "rel": "self",
      "href": "http://hostname:port/state/644444",
      "variables": [],
      "variableNames": [],
      "templated": false
    },
    {
      "rel": "city",
      "href": "http://hostname:port/city/6184",
      "variables": [],
      "variableNames": [],
      "templated": false
    }
  ],
  "stateId": 65986,
  "countyId": 6184,
  "name": "AAATest",
  "population": 20000,
  "location": "SFS CSR"
},
{
  "links": [
    {
      "rel": "self",
      "href": "http://hostname:port/state/65987",
      "variables": [],
      "variableNames": [],
      "templated": false
    },
    {
      "rel": "city",
      "href": "http://hostname:port/city/6184",
      "variables": [],
      "variableNames": [],
      "templated": false
    }
  ],
  "stateId": 65987,
  "countyId": 6184,
  "name": "2k8std511",
  "population": 20000,
  "location": "SFS CSR"
  }
]

var keywords='2k8std511';

var filtered = _.filter(jsonObj, function (item) {
                return (_.contains('2k8std511', item['name']));
            });
console.log(_.chain(jsonObj)
 .pluck("links")
 .flatten()
 .value());

请让我知道如何根据给定的关键字进行过滤:

输入示例: AAATest预期输出:[href:' http://主机名:端口/状态/ 644444 ']

问候,Pradeep

您可以使用简单的JavaScript来做到这一点:

var result = jsonObj.filter(function(obj) {
  return obj.name === 'AAATest'
}).reduce(function(acc, obj) {
  var links = obj.links.filter(function(link) {
    return link.rel === 'self'
  }).map(function(link) {
    return link.href
  })
  return acc.concat(links)
},[])

console.log(result) //=> ["http://hostname:port/state/644444"]

下划线解决方案:

 var jsonObj = [{ "links": [{ "rel": "self", "href": "http://hostname:port/state/644444", "variables": [], "variableNames": [], "templated": false }, { "rel": "city", "href": "http://hostname:port/city/6184", "variables": [], "variableNames": [], "templated": false }], "stateId": 65986, "countyId": 6184, "name": "AAATest", "population": 20000, "location": "SFS CSR" }, { "links": [{ "rel": "self", "href": "http://hostname:port/state/65987", "variables": [], "variableNames": [], "templated": false }, { "rel": "city", "href": "http://hostname:port/city/6184", "variables": [], "variableNames": [], "templated": false }], "stateId": 65987, "countyId": 6184, "name": "2k8std511", "population": 20000, "location": "SFS CSR" }] var filtername = 'AAATest'; var answer = _.chain(jsonObj) .filter(function(obj) { return obj.name === filtername; }) .map(function(obj) { return obj.links }) .first() .filter(function(obj) { return obj.rel === 'self' }) .map(function(obj) { return obj.href }) .value(); console.log(answer); 
 <script src="http://underscorejs.org/underscore-min.js"></script> 

使用下划线的另一个版本:

var result = _.chain(jsonObj)
    .where({ name: 'AAATest' })
    .pluck('links')
    .flatten()
    .where({ rel: 'self'})
    .pluck('href')
    .value();

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM