element設置headers添加token


<template>
  <div>
    <el-upload
      action="http://localhost:3000/picture"
       :headers="headers"
      list-type="picture-card"
      :on-preview="handlePictureCardPreview"
      :on-remove="handleRemove">
      <i class="el-icon-plus"></i>
    </el-upload>
    <el-dialog :visible.sync="dialogVisible">
      <img width="100%" :src="dialogImageUrl" alt="">
    </el-dialog>
 </div>
</template>

 

<script>
  export default {
    data() {
      return {
        dialogImageUrl: '',
        dialogVisible: false,
         headers:{}
      };
    },
    methods: {
      handleRemove(file, fileList) {
        console.log(file, fileList);
      },
      handlePictureCardPreview(file) {
        this.dialogImageUrl = file.url;
        this.dialogVisible = true;
      }
    },
    created(){
      this.$http.get('/picture')
       this.headers ={Authorization : 'Bearer '+(localStorage.token || '')}
    }
  }
</script>
 

 

1,在data中創建headers對象
2,element中動態綁定headers
3,   created中賦值


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM