我正在尝试查询领域云数据库中的数据,但是它没有返回任何数据。
Realm.Sync.User.login(url,credentials)
.then((user) => {
let config = user.createConfiguration({
sync:{
url:realmUrl,
error: errorCallback,
partial: true
},
schema: Schema.AllSchema
});
Realm.open(config)
.then(realm => {
let results = realm.objects('Cars')
console.log(results)
realm.close();
})
.catch(error => {
console.log(error)
})
.catch(error => {
console.log(error)
});
它不返回数据。。一件事是,如果我在查询之前将任何数据写入数据库,它将返回我刚刚插入的所有数据。
因此不了解,它正在查询插入的数据,而不是数据库中的数据。