if (this.state.uri.didCancel) {
}
else if (this.state.uri.error) {
}
else if (this.state.uri.customButton) {
}
else {
let source = { uri: this.state.uri }
RNFetchBlob.fetch('POST', 'https://a89ab0aa.ngrok.io/spring01/up', {
'Content-Type': 'multipart/form-data',
},
[{ name: 'file', filename: 'abc.jpg', data: RNFetchBlob.wrap(this.state.uri) }]
).then((res) => {
})
.catch((err) => {
// error handling ..
})
this.setState({
imagereturn: source
});
}
}
效果很好
newimages = [...this.state.images, { name: 'file', fileName: 'abc.jpg', data: RNFetchBlob.wrap(this.state.uri) } ];
this.setState({
images:newimages,
})
if (this.state.uri.didCancel) {
}
else if (this.state.uri.error) {
}
else if (this.state.uri.customButton) {
}
else {
let source = { uri: this.state.uri }
RNFetchBlob.fetch('POST', 'https://a89ab0aa.ngrok.io/spring01/up', {
'Content-Type': 'multipart/form-data',
},
this.state.images
).then((res) => {
})
.catch((err) => {
// error handling ..
})
this.setState({
imagereturn: source
});
}
}
它不起作用