0.4.0 • Published 9 years ago

upyun-form v0.4.0

Weekly downloads
6
License
MIT
Repository
github
Last release
9 years ago

upyun release npm

a pure front-end upyun form upload service, supports both native js and angular.js

Installation

$ bower install upyun --save

if you want to use NPM instead of bower, just

$ npm install upyun-form --save

Example

Check out online upload demo on github.io Native version, Angular.js version

See more exmaples in ./examples dir, or $ npm run example instead.

Use as angular module

html parts:

<form name="uploadForm" role="form" ng-controller="uploader">
  <input type="file" name="file">
  <a ng-click="upload()">Upload</a>
</form>

javascript parts:

var app = angular.module('myApp',['upyun']);

// configs upyun
app.config(['upyunProvider',function(upyunProvider) {
  upyunProvider.config({
    form_api_secret: 'my_form_api_secret',
    bucket: 'mybucket'
  });
}])

// bind from form, required params must be defined in the form
app.controller('upload', function($scope, upyun) {  
  // uploadForm is the form's name `form(name="uploadForm")`
  $scope.upload = function() {
    upyun.upload('uploadForm', function(err, response, image){
      if (err) return console.error(err);
      console.log(response);
      console.log(image);
    });
  }
});

Use as window.upyun

make sure window.md5 and window.Base64 exist.

html parts:

<form name="uploadForm" role="form">
  <input type="file" name="file">
  <a class="submit" onclick="upload();">Upload</a>
</form>

javascript parts:

function upload() {
  upyun('uploadForm', function(err, response, image){
      if (err) return console.error(err);
      console.log(response);
      console.log(image);
    });
  });
}

Development

install all devDependencies and run a static file serve server:

$ git clone https://github.com/turingou/upyun.git
$ cd upyun
$ bower install 
$ npm install
$ npm run dev

Contributing

  • Fork this repo
  • Clone your repo
  • Install dependencies
  • Checkout a feature branch
  • Feel free to add your features
  • Make sure your features are fully tested
  • Open a pull request, and enjoy <3

MIT license

Copyright (c) 2014 turing <o.u.turing@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


docor built upon love by docor v0.1.3

0.4.0

9 years ago

0.3.0

10 years ago

0.2.7

10 years ago

0.2.6

10 years ago

0.2.5

10 years ago

0.2.4

10 years ago

0.2.3

10 years ago

0.2.2

10 years ago

0.2.1

10 years ago

0.2.0

10 years ago

0.1.0

10 years ago