我可以将图像的路径存储为变量,并按照下面的说明使用它

时间:2018-01-31 09:01:06

标签: javascript firebase google-cloud-storage google-cloud-firestore

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; ==>这不起作用!!

2 个答案:

答案 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;