1.0.5 • Published 5 years ago

get-file-url v1.0.5

Weekly downloads
2
License
ISC
Repository
github
Last release
5 years ago

ionic-pullup for Ionic 4 and Angular 5

/* 组件使用说明 功能:附件上传(包括附件压缩上传) 入参说明: option:对象,上传相关信息配置 其中: imgUrl:字符串类型,按钮样式图片Url,必填 type: 字符串枚举类型,上传类型:img为图片,video为视频,file为文件,必填 source: 字符串枚举类型,上传方式,imgPicker为从相册上传,camera为通过摄像头拍照,selectSource为弹框选择上传方式非,必填 opacity: 数字类型;上传图片清晰度,非必填,默认为50 resultWidth: 数字类型 ;//上传图片的宽,非必填,默认为800 resultHeight: 数字类型 ;//上传图片的高,非必填,默认为800

      afterUpload:上传后的回调函数,其中参数为上传后服务器返回的结果

返回值:文件的url,以参数的形式传入afterUpload函数中 用例: <get-file-url option="uploadImgFromCamera" (afterUpload)="afterUpload($event) ">, 其中uploadImgFromCamera如下: { imgUrl: 'assets/imgs/add@3x.png', type: 'img',//上传类型:img/video/file source: 'camera',//imgPicker/camera/selectSource opacity: '100',//清晰度 resultWidth: 700,//图片的宽 resultHeight: 200//图片的高 } */