我是react-本地新手。我想使用rn-get ch-blob上传一个带有另一个参数“注释”的文件。我能够选择一个文件并使用react-native-docent-picker包获取文件的路径、名称、类型和大小。文件详细信息的日志是:
console.log(res.uri, res.type, res.name, res.size);
Output:
'content://com.android.providers.downloads.documents/document/1445', 'text/html', 'hello.webp', 21476
我简单地使用了方法' POST '的fetch函数,不确定这一点。
var file = {
name: this.type,
filename : this.name,
data: RNFetchBlob.wrap(this.uri)
};
变量文件的日志:
{ name: 'text/html',
│ filename: 'hello.webp',
└ data: 'RNFetchBlob-content://content://com.android.providers.downloads.documents/document/1445' }
方法:
fetch('https://beta.hellonepal.io/api/v1/comments',
{
method: 'POST',
headers:
{
'Accept': 'application/json',
'Content-Type' : 'multipart/form-data',
'Authorization': 'Bearer '+ global.apiToken,
},
body: JSON.stringify(
{
comment: this.state.newComment,
comment_file : file
})
})
.then(response => {
return response.json()
})
.then(RetrivedData => {
console.log(RetrivedData);
})
.catch(err => {
// Do something for an error here
console.log('Error in adding a comment');
});
});
我尝试使用 RNFetchBlob 方法,但不知道如何传递其他参数:
const url = "https://beta.hellonepal.io/api/v1/comments";
RNFetchBlob
.config({
trusty : true
})
.fetch(
'POST',
url, {
'Content-Type' : 'multipart/form-data',
}, file)
.then((res) => {
console.log(res);
callback(res);
})
.catch((errorMessage, statusCode) => {
console.log("Error: "+ errorMessage + " - " + statusCode);
})
您可以更改上传如下:
Content-Type
应该是json,因为您的body
类型是json
let formdata = new FormData();
formdata.append("comment", this.state.newComment);
formdata.append("comment_file", file);
RNFetchBlob.fetch('POST', 'https://beta.hellonepal.io/api/v1/comments', {
Authorization : 'Bearer '+ global.apiToken,
body: formdata,
'Content-Type' : "multipart/form-data",
})
.then((response) => response.json())
.then((RetrivedData) => {
console.log(RetrivedData);
})
.catch((err) => {
console.log('Error in adding a comment');
})
根据文件https://github.com/joltup/rn-fetch-blob#regular-请求根据您尝试POST的内容自动选择内容类型。
这里有一个关于如何上传文件的示例https://github.com/joltup/rn-fetch-blob#upload-a-file-from-storage
New Maintainers and Repository Location This repository no longer is the main location of "react-native-fetch-blob". The owners of this fork have agreed to maintain this package: https://github.com/jo
我正在使用 react-native-fetch-blob 下载 mp3 文件,然后稍后播放它们。问题是当我关闭应用程序并再次重新启动时, 的实际路径会发生变化,这意味着我无法使用下载文件后立即存储的绝对文件路径在下次运行应用程序时检索文件。 下面是我下载和存储文件路径的代码: 我将存储为持久化应用程序状态的一部分。但是它没有用,因为下次我打开应用程序时,文件路径已被重新分配。例如,这是一个文件下
在使用 React Native 的过程中,没有找到一款合适自己的 fetch-mock 组件。 因此,决定自己发布一个 react-native-fetch-mock module。 Roadmap 1. 结合Mock.js(已实现) 2. 配合线上rap系统 Usage __ mocks__/index.js export default { '/api/path': (options) =
在React本机AppState库中: iOS有三种状态背景->非活动->活动 Android只有背景->活动 当一个Android应用完全后台化时,主要活动从onPause->onStop 当有系统通知(例如在应用程序购买)时,它将转到onPause 当应用程序从后台到前台时,我需要运行一些代码 onstop->onResume 如果应用程序由于系统通知 onpause->onResume而短暂
C:\users\...\node_modules\react-native-fetch-blob\index.js:5 import{ ^^^^^^ syntaxerror:意外标记导入 在object.exports.runinthiscontext(VM.JS:76:16) 在module._compile(module.js:513:28) 在object.module.js:550:10
我已经在azure blob容器上上传了文件,但是如何使用java获取上传文件的URL。我有 azure 门户的 connectionString。 任何人都可以帮我吗?