template
javascript
<input class="file" name="file" type="file" accept="image/png,image/gif,image/jpeg" @change="update"/>
JavaScript
html
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) // 服務器錯誤 調用對應函數 函數需本身定義,此處後面省略 }
思路:
<input class="file">
元素節點的位置上建立一個好看的元素節點,好比img
<input class="file">
元素的z軸變高,使得其覆蓋<img/>
:z-index: 5;<input class="file">
是透明的,那麼咱們就只看見它同xy上的好看的<img />
<img />
實際上是點擊了它上層的表單以上思路能夠實現點擊用戶頭像,經過表單上傳更換頭像java