vue 動態修改el-upload 的action

action是一個必填參數,且其類型爲string,咱們把action寫成:action,而後後面跟着一個方法名,調用方法,返回你想要的地址,代碼示例:html

//html 代碼
<el-upload  :action="UploadUrl()"  :on-success="UploadSuccess" :file-list="fileList">
    <el-button size="small" type="primary" >點擊上傳</el-button>
    <div slot="tip" class="el-upload__tip"></div>
</el-upload>

// js 代碼在 methods中寫入須要調用的方法
methods:{
    UploadUrl:function(){
        return "返回須要上傳的地址";     
    }   
}
相關文章
相關標籤/搜索