react 上传文件

        var form = new FormData()

        var fileObj = document.getElementById("file").files[0]

        form.append("uploadFile",fileObj) //uploadFile为后台给的参数名

        fetch(url, {

                    method: 'POST',

                    body:form,

                })

                .then(function(response) {

                    return response.json();

                  })

                .then((e)=>{

                    console.log(e)

                })



如果要在img中看到自己上传的图片

this.setState({

            src:window.URL.createObjectURL(fileObj)

        })

你可能感兴趣的:(react 上传文件)