美文网首页
file表单 fromData post 请求

file表单 fromData post 请求

作者: web_ruby | 来源:发表于2017-09-25 16:39 被阅读0次

    fileChange(e){

    console.log(e);

    var files=e.target.files||e.dataTransfer.files;

    var tt=files[0];

    var re=new FormData();

    re.append('file',tt);

    //fromData  post传值

    if(tt) {

    if(/iphone|ipad|ipod/.test(this.type)) {

    this.$http.post(prox.prox+'/Common/uploadPicture?pType=1',re).then((res)=>{

    if(res.data.code==200) {

    this.toJava=res.data.content;

    }else{

    this.$dialog.alert({ mes:res.data.message})

    }

    }

    相关文章

      网友评论

          本文标题:file表单 fromData post 请求

          本文链接:https://www.haomeiwen.com/subject/lljdextx.html