2 回答

TA貢獻1860條經(jīng)驗 獲得超9個贊
檢查官方 firebase文檔,如其中所述:
“要將文件上傳到云存儲,您首先要創(chuàng)建對文件完整路徑的引用,包括文件名。?”
例如:
// Create a root reference
var storageRef = firebase.storage().ref();
// Create a reference to 'mountains.jpg'
var mountainsRef = storageRef.child('mountains.jpg');
// Create a reference to 'images/mountains.jpg'
var mountainImagesRef = storageRef.child('images/mountains.jpg');
// While the file names are the same, the references point to different files
mountainsRef.name === mountainImagesRef.name? ? ? ? ? ? // true
mountainsRef.fullPath === mountainImagesRef.fullPath? ? // false
另外,我在這里找到了另一個線程,您可以在其中找到使用 php 的示例

TA貢獻1770條經(jīng)驗 獲得超3個贊
- 2 回答
- 0 關(guān)注
- 155 瀏覽
添加回答
舉報