Vue 使用 formData 方式向後臺發送數據

1. 基本使用方式

templatejavascript

<input class="file" name="file" type="file" accept="image/png,image/gif,image/jpeg" @change="update"/>

JavaScripthtml

update (e) {
    let file = e.target.files[0]
    // console.log(file)
    let param = new FormData() // 建立form對象
    param.append('file', file, file.name) // 經過append向form對象添加數據
    param.append('id', this.$store.state.userId) // 添加form表單中其餘數據
      // withCredentials: true 使得後臺能夠接收表單數據  跨域請求
    const instance = axios.create({
        withCredentials: true
    })
    // url爲後臺接口
    instance.post('url', param)
        .then(this.succ) // 成功返回信息 調用函數  函數需本身定義,此處後面省略
        .catch(this.serverError) // 服務器錯誤 調用對應函數  函數需本身定義,此處後面省略
}

2. 美化 input file 按鈕 (拓展)

思路:
  1. 簡單粗暴地隱藏:opacity: 0;
  2. <input class="file"> 元素節點的位置上建立一個好看的元素節點,好比img
  3. <input class="file"> 元素的z軸變高,使得其覆蓋<img/> :z-index: 5;
  4. 由於 <input class="file"> 是透明的,那麼咱們就只看見它同xy上的好看的<img />
  5. 點擊這個好看的<img /> 實際上是點擊了它上層的表單

以上思路能夠實現點擊用戶頭像,經過表單上傳更換頭像java

相關文章
相關標籤/搜索