Dear SAPUI5 developers,
How can I download a blob data as file in SAPUI5
?
I have a blob object
:
"data:image/jpeg;base64,MjU1MjE2MjU1MjI0MDE2NzQ3MDc....."
I can not use the normal method that we usually use in JavaScript.
I mean window.URL.createObjectURL(blob);
does not make a correct url for the blob data.
Can you tell me how can I do that?
Thanks in advance.