gpt4 book ai didi

javascript - 从 Firebase 存储中读取文件的值/内容

转载 作者:行者123 更新时间:2023-11-29 23:54:34 24 4
gpt4 key购买 nike

是否可以在不使用下载功能的情况下读取文件的值?

代替:

storageRef.child('text.txt').getDownloadURL().then(function() {
...
});

类似于:

storageRef.child('text.txt').getValue().then(function(value) {
alert(value)
});

最佳答案

我在获取Firebase Storage中的文件内容时遇到了同样的麻烦,但最后我发现无法直接读取文件内容。但是,我是这样做的。

  fileRef.getDownloadURL()
.then(url => {
var xhr = new XMLHttpRequest();
xhr.responseType = 'json';
xhr.onload = function(event) {
var json= xhr.response;
console.log(json); // now you read the file content
};
xhr.open('GET', url);
xhr.send();
})
.catch(err => {
// process exceptions
})

重要的是配置 CORS 设置。您可以找到说明 here .

跳过这条指令让我浪费了很多时间:/
我希望其他人避免同样的错误。谢谢。

关于javascript - 从 Firebase 存储中读取文件的值/内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41992202/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com