我正在使用Expo的图像选择器,我得到了这个输出:
Object {
"cancelled": false,
"height": 468,
"uri": "file:///data/user/0/host.exp.exponent/cache/ExperienceData/%2540jbaek7023%252Fstylee/ImagePicker/9a12f0a3-9260-416c-98a6-51911c91ddf4.jpg",
"width": 468,
}
我可以渲染我的图片,但我刚刚意识到该网址是手机的本地URI 。
我正在使用Redux-Thunk和Axios发送 HTTP POST请求:
export const sendPost = ( imageUri, title, content ) => async dispatch => {
let response = await axios.post(`${ROOT_URL}/rest-auth/registration/`, {
image, <<<<- I can't put image uri here :( it's LOCAL path
title,
content
})
if(response.data) {
dispatch({ type: POST_CREATE_SUCCESS, payload: response.data.token })
} else {
dispatch({ type: POST_CREATE_FAIL })
}
}
更新我更改了请求调用
let headers = { 'Authorization': `JWT ${token}`};
if(hType==1) {
headers = { 'Authorization': `JWT ${token}`};
} else if (hType==2) {
headers = { 'Authorization': `Bearer ${token}`};
}
let imageData = new FormData();
imageData.append('file', { uri: image });
let response = await axios.post(`${ROOT_URL}/clothes/create/`, {
image: imageData,
text, bigType, onlyMe ...
}, {headers});
!!抱歉复杂但图像变量名称;图片image
为uri
。我不想更改原始变量名称的名称
在服务器上,正在打印
'image': {'_parts': [['file', {'uri': 'file:///data/user/0/host.exp.exponent
/cache/ExperienceData/%2540jbaek7023%252Fstylee/
ImagePicker/78f7526a-1dfa-4fc9-b4d7-2362964ab10d.jpg'}]]}
我发现gzip压缩是一种发送图像数据的方法。这有帮助吗?
答案 0 :(得分:4)
另一种选择是将图像转换为base64并发送字符串。缩小范围通常是base64字符串的大小通常比图像本身大。
这样的事情:
function readImage(url, callback) {
var request = new
XMLHttpRequest(); request.onload = function() {
var file = new FileReader();
file.onloadend = function() {
callback(file.result);
}
file.readAsDataURL(request.response); };
request.open('GET', url);
request.responseType = 'blob';
request.send();
}
答案 1 :(得分:3)
它必须是本地URI,没有问题,你还有什么指向图像。
现在要上传图像,首先应将其包装在FormData中:
// add this just above the axios request
let img = new FormData();
img.append('file', { uri: imageUri });
然后在你的axios请求体内添加:
image: img,
编辑:这个问题的当前形式是无法回答的。
我在我的一个项目中使用与React-native相同的Expo图像选择器作为OP,一切正常,FormData没有问题。
在几天前的stackoverflow聊天中与OP谈过,并将请求剥离到一个图像后,服务器开始抛出编码错误:
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xff in position 168: invalid start byte
所以问题在于OP的Django后端在解析图像时没有正确设置,而不是发送图像本身 - 这使得问题无法回答。
答案 2 :(得分:2)
你不能使用react-native-fetch-blob .....
import RNFetchBlob from " react-native-fetch-blob"
PostRequest(PATH){
RNFetchBlob.fetch('POST', "[URL]", {
"x-session-id": "SESSION_ID", //or Custom headers
'Content-Type': 'multipart/form-data',
}, [
{ name: 'image', filename: 'vid.jpeg', data: RNFetchBlob.wrap(PATH) },
// custom content type
]).then((res) => {
console.log(res)
})
.catch((err) => {
console.log(err)
// error handling ..
})
}
}