Vue.js Firebase - 获取方法内的数据以及如何循环?

时间:2018-01-23 14:06:37

标签: javascript firebase firebase-realtime-database vue.js vuefire

我正在尝试使用我的firebase实时数据库中的数据创建一个file.txt,但首先我需要将我的数据推送到我的方法 downloadfile()并循环抛出。但我无法找到解决方案!有人可以帮助我吗?

let app = Firebase.initializeApp(config);
let db = app.database();

let booksRef = db.ref('books');

export default {
name: 'App',
firebase: {
 books: booksRef
},
data () {
  return {
    newBook: {
     author: '',
     title: '',
     genre: ''
    }
  }
},

methods: {

downloadFile: function() {

  // Need all my data from firebase
  // and loop throw my data

  //btw: i am using npm save-as to make my file.txt and this works.

  let blob = new Blob([data], { type: 'text/plain;charset=utf-8' })
  saveAs(blob, 'file.txt')

  }
 }
}

提前感谢。

0 个答案:

没有答案