将时间戳添加到Firebase

时间:2020-05-01 15:18:34

标签: javascript firebase vue.js google-cloud-firestore

addToDb(){

              db.collection("orders").add({...this.$store.state.cart})
              .then((docRef)=> {
                this.status=""
                this.deleteData();
                this.$buefy.toast.open('Send')
                })
              .catch(function(error) {

            });
         },

使用vuex,我现在将数据添加到集合中,我还需要将服务器时间戳添加到数据库中。 谁能帮我,我不熟悉编程

0 个答案:

没有答案