Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
541 views
in Technique[技术] by (71.8m points)

sinatra - Ruby function to get Firestore doc field

I am trying to make a Stripe payment endpoint and want to calculate the cost on the server. I have documents in Firebase Firestore and the document has a parameter called productPrice. The documents are using an id called imageId. How do I create a function which takes in the imageId and output the productPrice?

def calculate_order_amount(imageId)
  # Get a collection reference
    images_col = firestore.col "ImagesCollection"

  # Get a document reference
    doc_ref = images_col.doc "#{imageId}"

    puts doc_ref.productPrice 

end

I don't think this is the correct way to do it as it just returns 500 server error. There are way too many documentation for this use case and all are very different.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...