잘 올려졌는데 이미지를 여러개 올리려고 해서
img_more(){
var storageRef = storage.ref()
this.img_road[0] = storageRef.child('image/' + this.file.name).put(this.file[0])
this.img_road[1] = storageRef.child('image/' + this.file.name).put(this.file[1])
console.log(this.file)
}
이렇게 해봤는데 콘솔로 출력해보면 첫번째와 두번째 이미지 모두 나와야 하는데 두번째 이미지만 나오는데 이거 왜 그런건가요
img_road는 배열로 저장되도록 했습니다.