gpt4 book ai didi

file - 在 native react 中上传文件

转载 作者:行者123 更新时间:2023-12-05 01:00:45 26 4
gpt4 key购买 nike

如何以最简单的方式将 react-native 中的文件上传到服务器?
网上的资料和图书馆太多了,所以我不知道它们是否可以安全使用。

谢谢你。

最佳答案

这是使用 fetch 上传文件到服务器的方法

        const body = new FormData();

//String Key value pair appending to body
body.append('KEY', VALUE);
body.append('KEY', VALUE);
body.append('KEY', VALUE);

//Appending file to body
body.append(KEY_AS REQUIRED_IN_SERVICE, {
uri: PASS_URI_OF_THE_FILE,
type: 'image/jpeg', //This is the file type .. you can define according to your requirement
name: 'photo.jpg', //File name you want to pass
})
//Service call
fetch(YOUR_URL, {
method: 'POST',
headers: new Headers({
YOUR_HEADER_PARAMS
}),
body: body
})
.then(res => res.json())
.then((responseJson) => {

//GET RESPONSE SUCCESS OF FAILURE

})
.catch((error) => {
//ERROR
});
}

关于file - 在 native react 中上传文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51486865/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com