I'm trying to submit form data and upload images from React Native app to CodeIgniter backend server. I'm choosing the images from react-native-image-crop-picker and only the data is sent and saved. But not the image is uploaded. I have tried this using Postman and it works perfectly.
I see that form.append() has 3 parameters. I checked the Postman request code, and it shows like this
data.append("attach_report", fileInput.files[0], "...3539240198157045_n.jpg");
My problem is, what's the datatype of fileInput.files[0] in this? Thanks in advance