如何在Axios中使用React设置multipart?


71

当我卷曲东西时,它可以正常工作:

curl -L -i -H 'x-device-id: abc' -F "url=http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4"  http://example.com/upload

我如何使其与axios一起正常工作?如果这很重要,我正在使用react:

uploadURL (url) {
  return axios.post({
    url: 'http://example.com/upload',
    data: {
      url: url
    },
    headers: {
      'x-device-id': 'stuff',
      'Content-Type': 'multipart/form-data'
    }
  })
  .then((response) => response.data)
}

由于某些原因,这不起作用。


这里的确切错误是什么?您是否从服务器获取特定的响应代码?另外张贴提琴手事件日志可能会有所帮助。
危险的

Answers:


124

这是我如何使用axios在react中上传文件

import React from 'react'
import axios, { post } from 'axios';

class SimpleReactFileUpload extends React.Component {

  constructor(props) {
    super(props);
    this.state ={
      file:null
    }
    this.onFormSubmit = this.onFormSubmit.bind(this)
    this.onChange = this.onChange.bind(this)
    this.fileUpload = this.fileUpload.bind(this)
  }

  onFormSubmit(e){
    e.preventDefault() // Stop form submit
    this.fileUpload(this.state.file).then((response)=>{
      console.log(response.data);
    })
  }

  onChange(e) {
    this.setState({file:e.target.files[0]})
  }

  fileUpload(file){
    const url = 'http://example.com/file-upload';
    const formData = new FormData();
    formData.append('file',file)
    const config = {
        headers: {
            'content-type': 'multipart/form-data'
        }
    }
    return  post(url, formData,config)
  }

  render() {
    return (
      <form onSubmit={this.onFormSubmit}>
        <h1>File Upload</h1>
        <input type="file" onChange={this.onChange} />
        <button type="submit">Upload</button>
      </form>
   )
  }
}



export default SimpleReactFileUpload

资源


2
在这种情况下如何发送多个文件?
Dani Vijay

3
为什么需要指定multipart/form-data?它应该已经内置在中FormData 。源(github.com/axios/axios/issues/318#issuecomment-218948420
阿尔乔姆Bernatskyi

您可以在实例化FormData对象时将form元素作为参数传递,这非常有用,因为它使用表单的键及其值填充对象。
Darragh Enright

11

如果您要发送字母数字数据,请尝试更改

'Content-Type': 'multipart/form-data'

'Content-Type': 'application/x-www-form-urlencoded'

如果您要发送非字母数字数据,请尝试完全删除“ Content-Type”。

如果仍然不起作用,请考虑尝试请求承诺(至少测试它是否确实是axios问题)


2

好。我尝试了上述两种方法,但对我没有用。经过反复试验,我知道实际上文件没有保存在“ this.state.file”变量中。

fileUpload = (e) => {
    let data = e.target.files
    if(e.target.files[0]!=null){
        this.props.UserAction.fileUpload(data[0], this.fallBackMethod)
    }
}

这里fileUpload是一个不同的js文件,它接受两个这样的参数

export default (file , callback) => {
const formData = new FormData();
formData.append('fileUpload', file);

return dispatch => {
    axios.put(BaseUrl.RestUrl + "ur/url", formData)
        .then(response => {
            callback(response.data);
        }).catch(error => {
         console.log("*****  "+error)
    });
}

}

不要忘记在构造函数中绑定方法。让我知道您是否需要更多帮助。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.