我在一个项目中使用Firestore。查询在这里工作正常,但是当我尝试按时间戳记desc对查询进行排序时,它不起作用
这是我的代码
let ref = db.collection('customers').orderBy('timestamp', 'desc')
ref.onSnapshot(snapshot => {
snapshot.docChanges().forEach(change => {
if(change.type == 'added'){
let doc = change.doc
this.customers.push({
id:doc.id,
customer_name:doc.data().customer_name,
designation:doc.data().designation,
timestamp:moment(doc.data().timestamp).fromNow('lll')
})
}
})