我还没反应过来呢。如果我有以下代码,我想异步地使用react js上传图像。
var FormBox = React.createClass({
getInitialState: function () {
return {
photo: []
}
},
pressButton: function () {
var data = new FormData();
data.append("photo", this.state.photo);
// is this the correct way to get file