当前位置:首页 > 操作系统 > Ios

Vue使用axios上传文件

<template>
  <div class="upload-demo">
    <input type="file" ref="fileInt" @change="changeHandle">
  </div>
</template>
 
<script>
 
export default {
  name: ‘UploadFileDemo‘,
  props: {
    msg: String
  },
  methods: {
    changeHandle() {
      const file = this.$refs.fileInt.files[0];
      console.log(file);
      const data = new FormData();
      data.append(‘file‘, file);
      axios.post(‘http://localhost:3006/common/upload‘, data, {
        headers: {
          ‘Content-Type‘: ‘multipart/form-data‘,
        },
      }).then(res => {
        console.log(res);
      }).catch(err => {
        console.log(err);
      });
    }
  },
}
</script>
 
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
</style>

 

原文:https://www.cnblogs.com/Narkea/p/10778255.html


【说明】本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:254677821)!