1.1.3 • Published 9 years ago

rc-dropzone v1.1.3

Weekly downloads
4
License
-
Repository
github
Last release
9 years ago

rc-dropzone


dropzone ui component for react, support for IE11+, chrome and firefox.

NPM version SPM version build status Test coverage node version

Sauce Test Status

dropzone

Feature

dropzone for react.

install

rc-dropzone

Usage

var Rcdropzone = require('rc-dropzone');
var React = require('react');

React.render(
  <Dropzone action="http://127.0.0.1:3000/">
	<div className="dz-message">
	  Drop files here or click to upload.<br/>
	  <span className="note">(This is just a demo dropzone. Selected files are <strong>not</strong> actually uploaded.)</span>
	</div>
  </Dropzone>,
  document.getElementById('__react-content'));

API

props

nametype默认值说明
paramNamestringfile文件上传参数名
acceptfunction接受所有文件返回一个Promise对象
inputAcceptstring空字符串file的accept参数
dataobject{}post文件的时候,发送的其他参数
successfunction上传成功回调
errorfunction上传失败回调

说明:accept方法必须返回一个Promise对对象,通过resolve表示成功状态,reject表示失败, reject的第一个参数是错误信息.

online docs: http://spmjs.io/docs/rc-dropzone/

Development

npm install
npm start

Example

http://localhost:8000/examples/index.md

online example: http://spmjs.io/docs/rc-dropzone/examples/

Test Case

http://localhost:8000/tests/runner.html?coverage

Coverage

http://localhost:8000/node_modules/rc-server/node_modules/node-jscover/lib/front-end/jscoverage.html?w=http://localhost:8000/tests/runner.html?coverage

License

rc-dropzone is released under the MIT license.