javascript - vue element-ui 上传文件组件怎么使用
问题描述
请问element-ui的上传组件怎么使用,最好有demo可以看一下,官网的实在没看懂!谢谢了
问题解答
回答1:<el-upload action='//jsonplaceholder.typicode.com/posts/' :on-preview='handlePreview' :on-remove='handleRemove' :file-list='fileList'> <el-button size='small' type='primary'>点击上传</el-button> <p slot='tip' class='el-upload__tip'>只能上传jpg/png文件,且不超过500kb</p></el-upload><script> export default { data() { return {fileList: [{name: ’food.jpeg’, url: ’https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100’}, {name: ’food2.jpeg’, url: ’https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100’}] }; }, methods: { handleRemove(file, fileList) {console.log(file, fileList); }, handlePreview(file) {console.log(file); } } }</script>
官网的代码直接用,然后在后台接口去接受处理文件不久ok了吗
相关文章:
1. angular.js - ng-grid 和tabset一起用时,grid width默认特别小2. python for循环中的函数只能运行一次?3. android - 美团筛选处筛选条件停靠+条件点击滑动到顶部。4. javascript - Vue.js2.0不能使用debounce后大伙一般是如何解决延迟请求的问题的呢。5. python的文件读写问题?6. python - pyspider爬取了接近1G的数据,无法导出csv?7. css - transform-origin 旋转参考点8. 请问是对象还是数组9. html5 - 在一个页面中 初始了两个swiper 不知道哪里错了 一直不对10. html - 爬虫时出现“DNS lookup failed”,打开网页却没问题,这是什么情况?
