我有一个输入字段,用户可以选择要上传的图像,然后我需要发送到云存储。问题是,我不知道如何获取他们选择的文件。我看到很多问题,例如this,this,this等。我看到的大多数问题,例如this,都要求在上传之前预览图像。我认为我不需要预览图像,我只想上传它。我该怎么做呢?这是我目前的代码:
function addImage() {
$("#addImage").append('\
<input type="file" id="image" accept="image/*">\
<button type="submit">ok</button>\
<button onclick="cancelAddImage()">cancel</button>');
$("#addImage").submit(function() {
var image = $("#image").files;
console.log(image);
storage.ref("images").put(image).then(function(snapshot) {
console.log('Uploaded a file!');
});
});
}
console.log()为此提供了“未定义”。我还尝试了.files[0]
而非.files;
以及其他许多人。
答案 0 :(得分:1)
在您的html代码中,您将输入字段放入一个id。例如,如果您想从相机上传图片:
<input type="file" accept="image/*" capture="camera" id="cameraInput">
然后在你的js代码中,你将听取关于这个元素的更改事件:
let storageRef = firebase.storage().ref('photos/myPictureName')
let fileUpload = document.getElementById("cameraInput")
fileUpload.addEventListener('change', function(evt) {
let firstFile = evt.target.files[0] // upload the first file only
let uploadTask = storageRef.put(firstFile)
})
当然你需要以某种方式包含firebase js库。
如果你用较旧版本的js编写,你还需要用var替换let并添加;在你的行尾。