0.2.0 • Published 6 years ago

lm-uploadimage v0.2.0

Weekly downloads
23
License
-
Repository
-
Last release
6 years ago

uploadimage

  • 作者:fuhebo
  • 邮箱:fuhebo@58ganji.com
  • 版本:0.2.0

介绍

图片上传


安装

lm-* 组件使用 npm 进行管理,命名空间统一为 lm-,请使用以下命令进行组件安装。

npm i lm-uploadimage --save
  • 如果你还没有安装 npm,可通过以下方式进行 安装
  • 安装cnpm npm install -g cnpm --registry=https://registry.npm.taobao.org

使用

样例文档

  • 待开发

使用

最少配置参数为:

  • 传入fieldId与组件绑定
  • onDelete 删除的回调
  • onSuccess 上传成功后的回调
  • onError 发生错误时的回调
  • fileInfo 资源的url
<UploadImage 
        fieldId={ 'filed3' }
        onSuccess={ this.onSuccess }
        onDelete={ this.onDelete }
        onError={ this.onError }
        fileInfo= { '' } />

配置参数

PropTypeDefaultDescription
fileInfostring || arrayundefined文件信息
loadingTypestringloading加载中的样式 【loading, progress, all, none】
isFileListboolfalse是否是文件列表
fieldIdstringundefined字段ID或文件上传时的key
uploadKeystringundefined对应到文件上传是的key
acceptstringimage/*input中accept属性
multipleboolfalse是否可多选
beforeUploadfuncundefined上传之前的回调 (file) => booleanobject(设置压缩相关属型)Promise
afterCompressfuncundefined压缩成功后的回调 (base64) => false(不上传)other(继续上传)
customUploadfuncnull自定义上传 (filedId, uploadInfo)
disabledboolfalse是否禁用上传以及预览中的删除(也列表中的删除按钮)
actionstringundefined上传的url
dataobject || funcundefined上传附带的其他提交信息(func可返回promise)
headersobjectundefined设置xhr的header
onStartfuncundefinedxhr send之前的回调
onProgressfuncundefined上传进度回调 (fieldId, e, uid)
onSuccessfunc() => {}上传成功后的回调 (fieldId, ret, fileInfo)
onErrorfunc() => {]失败后的回调 (fieldId, e, fileInfo)
onDeletefunc() => {}删除后的回调 (field, uid) => { return bool(false 不关闭预览)promise }
onAddfunc() => {}添加列表的一个项 (fieldId, fileInfo) 非列表时 可不传
withCredentialsboolundefined允许跨域发送cookie
appUploadfuncundefined调用app上传 (fieldId)
classNamestringundefined自定义class
hasDeleteInListboolfalse列表中是否显示删除
opacitynumber5预览的背景透明度
maxUploadNumbernumber1最大可上传张数
onInputChangefuncundefined触发input的onChange时的回调函数(fieldId, files) => { return 处理后的filesfalse 不上传promise(resolve的内容上传, reject不上传) }

注意事项

  • 组件注意事项

开发调试

进入项目目录后,使用 node 命令启动服务

npm run start

打包发布可通过 node 命令执行

npm run build
npm publish

相关资料


Changelog

0.1.0

  1. init

0.2.0

  1. update react to version 16