我有以下形式的json响应:
[{
"id": 425055,
"title": "Foo"
}, {
"id": 425038,
"title": "Bar"
}, {
"id": 425015,
"title": "Narf"
}]
我使用oboe.js创建高地流:
const cruiseNidStream = _((push, next) => {
oboe({
url: 'http://fake.com/bar/overview,
method: 'GET',
headers: {
'X-AUTH': 'some token',
},
}).node('.*', (overview) => {
// I expect here to get an object having and id, title property
push(null, overview.id);
}).done((overview) => {
push(null, _.nil);
}).fail((reason) => {
console.error(reason);
push(null, _.nil);
});
});
我的问题是我不知道使用节点的模式,以便它匹配该数组的每个元素。目前我使用当前设置获得的项目是所有对象和属性:
425055
Foo
{ id: 227709, title: 'Foo' }
如果回复会有如下属性:
{
'overview': [],
}
我本可以使用.overview.*
。
答案 0 :(得分:2)
双簧管有两种方式匹配数据,路径和鸭子类型。
fruits = ['apple','pear','orange','grape']
for i in fruits:
print(i)
oboe('/data.json')
.node('{id title}', function(x) {
console.log('from duck-typing', x)
})
在路径示例中,请注意oboe('/data.json')
.node('!.*', function(x) {
console.log('from path matching', x)
})
//or also valid
.node('!.[*]', function(x) {
console.log('from path matching', x)
})
字符。这指的是树的根节点,这个模式只会将你的三个对象,而不是任何自己的属性嵌套得更深。
我制作了一个gomix,您可以在其中查看此功能,以及view the source。
答案 1 :(得分:1)
Oboe.js支持鸭子打字:
.node('{id title}', (overview) => {
}
请注意,我的json是平的,所以这很有用。对于嵌套的json,结果可能会有所不同。