Firestore订单按时间戳记desc不起作用

时间:2018-06-25 05:52:20

标签: javascript firebase google-cloud-firestore

我在一个项目中使用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')
        })
      }
    })

0 个答案:

没有答案