提交 07293ed8 authored 作者: 钟是志's avatar 钟是志

图片上传bug 2019年9月24日 12:18:48

上级 13fad7c9
...@@ -12,19 +12,22 @@ export default class UploadButton extends React.Component { ...@@ -12,19 +12,22 @@ export default class UploadButton extends React.Component {
e.stopPropagation(); e.stopPropagation();
e.preventDefault(); e.preventDefault();
} }
document.getElementById('infoUpload').click(); // document.getElementById('infoUpload').click();
this.fileInput.click(); this.fileInput.click();
}; };
imgFileChange = (e) => { imgFileChange = (e) => {
if(e && e.stopPropagation){
e.stopPropagation();
e.preventDefault();
}
const file = this.fileInput.files[this.fileInput.files.length - 1]; const file = this.fileInput.files[this.fileInput.files.length - 1];
if(!file){ if(!file) {
return false; return false;
} }
Toast.loading();
debugger;
uploadFile({file}).then((res) => { uploadFile({file}).then((res) => {
Toast.hide();
if(res && res.url){ if(res && res.url){
Toast.success('上传成功!'); Toast.success('上传成功!');
console.log(res); console.log(res);
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论