submitHandler = async (e) => {
e.preventDefault();
let postData = new FormData();
postData.append('description',this.state.description)
postData.append('title',this.state.title)
postData.append('is_public_post',1)
this.state.image.map((image,key) => {
postData.append('images['+key+']',image)
})
let res = await post(postData);
}
Где я хочу сжать изображения перед загрузкой в Ax ios?