Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xiyuyizhi/ajaxupload
仿百度云ajax上传文件插件
https://github.com/xiyuyizhi/ajaxupload
ajax ajax-upload upload-file
Last synced: 24 days ago
JSON representation
仿百度云ajax上传文件插件
- Host: GitHub
- URL: https://github.com/xiyuyizhi/ajaxupload
- Owner: xiyuyizhi
- License: mit
- Created: 2015-08-16T12:32:39.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-12-01T02:24:49.000Z (almost 7 years ago)
- Last Synced: 2024-07-30T16:51:15.661Z (3 months ago)
- Topics: ajax, ajax-upload, upload-file
- Language: JavaScript
- Size: 59.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE-MIT
Awesome Lists containing this project
README
仿百度云AJax上传文件插件
运行项目:(本地要有node环境)
1、将ajaxUpload clone到本地
2、npm install 安装相关模块
3、grunt default 构建文件
3、node app.js启动项目
4、浏览器中访问localhost:3000/ajax 便能上传文件
在自己项目中使用此插件:
1、将项目中public下的zjmy.upload文件夹复制到自己项目中
2、在自己页面中引入dest目录下的js、css文件(先要引用jquery)
```
默认配置项:
url: "/" 上传地址
method: 'POST' 请求方法
maxFileCount:'10' 一次最大的上传数量
allowSuffix: 'image/png,image/jpeg,audio/mp3,audio/mpeg,text/plain,application/msword', 允许的后缀列表
success: 回调
error:
complete:所有文件都上传后的回调
```
使用:
```
上传文件
$('#up').upload({
method: 'POST',
url: '/upload',
maxFileCount:2
。
。
。
});
```
注意:
使用时可以根据实际情况修改:
zjmy.upload.js中:
$(this).after("");修改name名称,与后台参数对应
或:响应回调中:xhr.status == 201、200等,根据后台指定的状态码确定;