You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a way to save images to MongoDB through parse code just as you can with a string value? The images I am trying to save using my parse code are not showing up in MongoLab like my string values are.
I have read about something called GridFs is this what I am supposed to use for this task?
This example code from the Parse documentation does not seem to save an image file to the database.
let imageData = UIImagePNGRepresentation(image)
let imageFile = PFFile(name:"image.png", data:imageData)
var userPhoto = PFObject(className:"UserPhoto")
userPhoto["imageName"] = "My trip to Hawaii!"
userPhoto["imageFile"] = imageFile
userPhoto.saveInBackground()
Thank you for any guidance.
The text was updated successfully, but these errors were encountered:
That code should result in an image saved in GridStore. Can you tell us what error messages you are getting? You can see error messages on the server by running the server with VERBOSE=1
Is there a way to save images to MongoDB through parse code just as you can with a string value? The images I am trying to save using my parse code are not showing up in MongoLab like my string values are.
I have read about something called GridFs is this what I am supposed to use for this task?
This example code from the Parse documentation does not seem to save an image file to the database.
let imageData = UIImagePNGRepresentation(image)
let imageFile = PFFile(name:"image.png", data:imageData)
var userPhoto = PFObject(className:"UserPhoto")
userPhoto["imageName"] = "My trip to Hawaii!"
userPhoto["imageFile"] = imageFile
userPhoto.saveInBackground()
Thank you for any guidance.
The text was updated successfully, but these errors were encountered: