I have a React Native (0.59) app which consumes an (Swagger-generated) SDK that accepts Blob
objects for file uploads. While there are sources on creating blobs from remote resources (e.g. using fetch), I couldn't find any resource on creating a blob on the fly. For example I have a string (regular JS string), and I need to upload that string as a text file to the server. I'll also have other file references from the file system where I'll also need to upload too.
How do I create Blob from any kind of arbitrary data in React Native?
Blob.build
in mine. TheBlob
methods areclose
,getRNFetchBlobRef
,markAsDerived
,onCreated
,readBlob
, andslice
. – Quillet