GithubHelp home page GithubHelp logo

bry's Introduction

bry 使用vue拉取数据,其中有 基于layui实现的文件上传。

distpicker 省市区的插件 上传文件js //拿到event getFile(event) { var file = event.target.files; let that = this; for (var i = 0; i < file.length; i++) { // 上传类型判断 var imgName = file[i].name; var idx = imgName.lastIndexOf("."); if (idx != -1) { var ext = imgName.substr(idx + 1).toUpperCase(); ext = ext.toLowerCase(); if ( ext != "jpg" && ext != "png" && ext != "bmp" && ext != "gif" ) { } else { that.imgArr = file[i]; } } else { } //展示上传的图片 let reader = new FileReader(); reader.readAsDataURL(file[i]);//这个方法将文件转为base64编码的字符串,可以把这个给后端了。 //这里在页面展示图片 reader.onload = function (e) { that.imgArr = this.result; }; } },

bry's People

Contributors

bluefire-club avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.