使用JavaScript在旧图像上发布Firebase实时数据库

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用JavaScript在旧图像上发布Firebase实时数据库相关的知识,希望对你有一定的参考价值。

我正在尝试创建一个简单的网页,以便与Firebase一起玩。我目前正致力于用户上传他们的照片并将其存储以及在数据库中对它们的引用。我有一个工作版本,除了唯一的问题是如果多个用户同时打开页面,只有最新的帖子会持续。我想使用实时功能来解决这个问题,并提出了这个问题。

var postRef = firebase.database().ref('variables/postNumber');
postRef.on('value',function(snapshot) {
    var postName = snapshot.val();
    var uploader = document.getElementById('uploader');
    var filebutton = document.getElementById('filebutton');

    // get file

    filebutton.addEventListener('change', function(e) {
        var file = e.target.files[0];
        var ext = file.name.split('.').pop();;
        console.log(postName);
        console.log(ext);
        //create a storage ref
        var storageRef = firebase.storage().ref('posts/' + postName + "." + ext);

        var task = storageRef.put(file);
        publishPost(postName, ext);
        function publishPost(postName, ext) {
            firebase.database().ref('posts/' + postName).set({
                postID: postName,
                postDate: Date(),
                fileType : ext
            });
            firebase.database().ref('variables/').set({
                postNumber: postName + 1
            });
        }
        task.on('state_changed',

            function progress(snapshot){
                var percentage = (snapshot.bytesTransferred / snapshot.totalBytes) *100;
                uploader.value = percentage;
            },
            function error(err){

            },
            function complete(postName, ext){
                uploader.value = 0;
                window.alert('Your meme Uploaded correctly');

            },
        );
    });
});

这很好用,总是更新postName变量,除非新用户发布时,它会将每个帖子重写为新帖子。例如,如果用户A在用户B已经在页面上时发布图片,那么当用户B发布时,他的帖子将在第一次上传两次时覆盖用户A的帖子。任何人都可以解释为什么会这样吗?我正在考虑移动监听器来启动该功能,但不确定这是否是正确的选择。

答案

每次检测到新值时,事件监听器都会附加到按钮上。这意味着change上的filebutton事件监听器根本不在观察者中。

工作代码:

let postName = null;

var postRef = firebase.database().ref('variables/postNumber');

postRef.on('value', function(snapshot) {
  const value = snapshot.val();

  if (value === null) {
    // Handle error when no value was returned
    return;
  }

  postName = value;

});

var uploader = document.getElementById('uploader');
var filebutton = document.getElementById('filebutton');

filebutton.addEventListener('change', function(e) {
  if (postName === null) {
    // Handle the case then post name is still null (either wan't loaded yet or couldn't be loaded)
    return;
  }

  var file = e.target.files[0];
  var ext = file.name.split('.').pop();;

  //create a storage ref
  var storageRef = firebase.storage().ref('posts/' + postName + "." + ext);

  var task = storageRef.put(file);
  publishPost(postName, ext);
  function publishPost(postName, ext) {
    firebase.database().ref('posts/' + postName).set({
      postID: postName,
      postDate: Date(),
      fileType : ext
    });
    firebase.database().ref('variables/').set({
      postNumber: postName + 1
    });
  }
  task.on('state_changed', 
  function progress(snapshot){
    var percentage = (snapshot.bytesTransferred / snapshot.totalBytes) *100;
    uploader.value = percentage;
  },
  function error(err){

  },
  function complete(postName, ext){
    uploader.value = 0;
    window.alert('Your meme Uploaded correctly');
  });
});

以上是关于使用JavaScript在旧图像上发布Firebase实时数据库的主要内容,如果未能解决你的问题,请参考以下文章

快速更改按钮图像在旧图像上附加新图像

我的反应应用程序没有在旧版 Safari 浏览器上加载图像和某些组件。显示 SSL 错误

使用防止javascript错误控制台.log在旧浏览器上

如何在javascript中克隆图像

Sprite Sheet - 在旧 sprite 之上绘制新 sprite

javascript 我们在旧的Balanced仪表板中用于分析的API。