使用AngularFire2的角度应用程序。我试图在子对象上查询firebase,而不仅仅是子字符串属性。通过子字符串属性查询有效,但如何查询整个对象。
此代码有效
// Given the following firebase data structure
httpCache: {
{ID}: {
url: 'www.fakeurl',
otherProperties: {}
}
}
// This code will return results if exists where the url matches
this.af.database.list('httpCache', {
query: {
orderByChild: 'url',
equalTo: 'www.fakeurl'
}
}).subscribe(x => {
if (x.length > 0) { console.log('match found!'); }
});
此代码不起作用:
// Given the following firebase data structure
httpCache: {
{ID}: {
request: {
url: 'www.fakeurl',
params: 'id=1'
},
otherProperties: {}
}
}
// This code throws an exception
let request = {
url: 'www.fakeurl',
params: 'id=1'
};
this.af.database.list('httpCache', {
query: {
orderByChild: 'request',
equalTo: request
}
}).subscribe(x => {
if (x.length > 0) { console.log('match found!'); }
});
以下是例外:
Query: First argument passed to startAt(), endAt(), or equalTo() cannot be an object.
我尝试使用此处显示的第二个解决方案,其中过滤条件被推送到包含所有过滤器属性的子对象: Query based on multiple where clauses in firebase
答案 0 :(得分:0)
您无法查询对象。所以这是无效的并导致错误:
let request = {
url: 'www.fakeurl',
params: 'id=1'
};
this.af.database.list('httpCache', {
query: {
orderByChild: 'request',
equalTo: request
}
})
当我在the question you linked中回答时,您可以添加一个包含要查询的组合值的属性。但是,您还需要将实际查询调用中的值组合起来,这是您不会做的。
不可能说出你如何组合这些价值观,但是说你只是简单地连接了网址和参数,你就可以查询:
let request = 'www.fakeurl_id=1'
this.af.database.list('httpCache', {
query: {
orderByChild: 'request',
equalTo: request
}
})