您好,登錄后才能下訂單哦!
小編給大家分享一下vue實現(xiàn)簡單圖片上傳的方法,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討方法吧!
功能
<template> <div class="about"> <div> <div> <img :src="'https://www.xxx.com'+item" alt="" v-for="item in pics" > </div> <label><input type="file" ref="file" @change="up()">+<span class="label" :></span></label> </div> </div> </template> <style scoped="scoped"> label{ width: 100px; height: 100px; display: inline-block; overflow: hidden; background-color: #CCCCCC; color: #FFFFFF; font-size: 48px; text-align: center; line-height: 100px; position: relative; } input{display: none;} .label{ position: absolute; display: inline-block; bottom: 0; left: 0; height: 2px; width: 0%; background-color: #FFA500; } </style> <script> export default{ name: 'About', data(){ return{ pics:[], pre:0, } }, methods:{ up(){ var that=this; var file=this.$refs.file.files[0]; var data=new FormData(); data.append("file",file); this.$http.post("https://www.xxx.com/ajax/file.php",data,{ onUploadProgress:e=>{ this.pre=e.loaded/e.total*100 console.log("+++",e) } }) .then(res=>{ if(res.data.error==0){ this.pics.push(res.data.pic) console.log("----",res) } }) .catch(err=>{ console.log(err) }) this.pre=0 }, } } </script>
看完了這篇文章,相信你對vue實現(xiàn)簡單圖片上傳的方法有了一定的了解,想了解更多相關知識,歡迎關注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內容。