1.https://github.com/mrdoob/three.js
2.https://github.com/chrislusf/seaweedfs
3.http://my.heyany.com/testbook/458.html owncloud vs seafile
Last active
November 22, 2017 01:30
-
-
Save leapar/efc018e2e63bf069a9372cfb8e70dd38 to your computer and use it in GitHub Desktop.
gun
fineuploader
- 浏览器最大连接数 http://www.cnblogs.com/xiaoxiapier/p/4505117.html
- 默认是3个 可以修改maxConnections 达到更多 https://docs.fineuploader.com/api/options.html#maxConnections
<script>
// Some options to pass to the uploader are discussed on the next page
var uploader = new qq.FineUploader({
element: document.getElementById("uploader"),
//element: document.getElementById("fineuploader-container"),
request: {
endpoint: "http://127.0.0.1:8080/upload"
},
deleteFile: {
enabled: true,
endpoint: "http://127.0.0.1:8080/upload"
},
maxConnections:5,
chunking: {
enabled: true,
concurrent: {
enabled: true
},
success: {
endpoint: "http://127.0.0.1:8080/chunksdone"
}
},
resume: {
enabled: true
},
retry: {
enableAuto: true,
showButton: true
}
})
</script>
开启Threejs之旅 http://www.hewebgl.com/
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
大文件上传
问题:
如果有几百M,几G的文件上传,怎么做?同时还需要进行续传。
支持文件分片上传的js客户端有:
服务端代码:
完整例子
checksum