用reactjs和dropzone发送图片

时间:2017-06-12 21:21:21

标签: jquery reactjs dropzone.js

我有这个代码,发送带有reactjs和组件dropzone的图像,但我不确定为什么不工作,我不明白什么是问题或者我应该发送什么价值

render(){
    return(
        <Dropzone
          accept="image/jpeg, image/png"
          onDrop={this.sendImg.bind(this)} 
        >
        </Dropzone> 
    )
}


sendImg(e){
    $.ajax({
      type: "POST",
      url: '/api/uploadImg/',
      data: e[0],
      dataType: 'json',
      cache: false,
      success: function(data) {
         console.log(data);
      }.bind(this),
      error: function(xhr, status, err) {
          console.log(err);
      }.bind(this)
    });

}

感谢您的帮助

0 个答案:

没有答案