firestore.collection("products").where("OrderNo", "==", inputx)
.get()
.then(function(querySnapshot) {
querySnapshot.forEach(function(doc) {
var Nameout=doc.get("Name");
var path='products/'inputx'-'Nameout;
var tangRef = storageRef.child(path);
}).then(function(){
}).catch(function(error){
})
理想情况下,路径应该类似于(products / 123-image.jpg)。是否有另一种方法来存储变量的路径
var path =' products /' inputx' - ' Nameout; ==>这不起作用!!
答案 0 :(得分:3)
你可以使用反向标记
var path=`products/${inputx}-${Nameout}`;
或字符串连接
var path='products/' + inputx + '-' + Nameout;
答案 1 :(得分:1)
var path = 'products/ ' + inputx + '-' + nameout;
或者
var path = 'products/{0}-{1}', inputx, nameout;