мой реагирующий нативный код
var dataphoto = this.state.photoData; // is from ImagePicker
RNFetchBlob.fetch('POST', 'https://siteexample/api/storimage', {
Authorization : "Bearer access-token",
otherHeader : "foo",
'Content-Type' : 'multipart/form-data',
}, [
{ name : 'image', filename : 'image.jpg', data: dataphoto},
]).then((resp) => {
console.log('response: ' + JSON.stringify(resp));
}).catch((err) => {
console.log('err: ' + JSON.stringify(err));
})
Мой Laravel Код
// Route::post('storimage','apiController@storimage'); api route
public function storimage(Request $req){
return $req->all();
}
}
Результат в моей реакции родной консоли
data": {"image":{}}
Чего не работает !!!