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
I have set up and uploader that returns a url and this works well. However, I don't want to have to upload the image each time the user inserts or removes. I want to use a temporary url
let tempFileUrl = URL.createObjectURL(file);
This creates a url: "blob:http://localhost......". This works when working with DOM elements but If I pass this to the image uploadByFile result
return { success: 1, file: tempFileUrl }
It just keeps loading
The text was updated successfully, but these errors were encountered:
I have set up and uploader that returns a url and this works well. However, I don't want to have to upload the image each time the user inserts or removes. I want to use a temporary url
This creates a url: "blob:http://localhost......". This works when working with DOM elements but If I pass this to the image
uploadByFile
resultreturn { success: 1, file: tempFileUrl }
It just keeps loading
The text was updated successfully, but these errors were encountered: