“uploader” allows users to upload single or multiple files with item selection.
Dependencies
bower install ax5ui-uploader
bower is web front-end package manager.
When you install bower
, it will be installed under the bower_components
folder to resolve the plug-in dependencies.
(You can change the folder location. .bowerrc )
It is recommended that you install by using bower
.
If you’ve never used bower, please refer to http://bower.io/#install-bower.
If you do not use bower, it also can be installed by using npm as an alternative. In case of npm, which is the package manager for the front end, you need to solve the problem of plug-in dependencies.
npm install jquery
npm install ax5core
npm install ax5ui-uploader
After downloading the install file of npm, you will need to copy it to the location where you want to use as a resource for the project.
If the copy process is inconvenient, it also can be done easily by using gulp
or grunt
.
Folder location can be any for your project. However, please be sure to assign the right path in the project.
<link rel="stylesheet" type="text/css" href="https://cdn.rawgit.com/ax5ui/ax5ui-uploader/master/dist/ax5uploader.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script type="text/javascript" src="https://cdn.rawgit.com/ax5ui/ax5core/master/dist/ax5core.min.js"></script>
<script type="text/javascript" src="https://cdn.rawgit.com/ax5ui/ax5ui-uploader/master/dist/ax5uploader.min.js"></script>
CDN urls This is a list of CDN urls for ax5ui-uploader. ax5ui offers the CDN services through rawgit.
https://cdn.rawgit.com/ax5ui/ax5ui-uploader/master/dist/ax5uploader.css
https://cdn.rawgit.com/ax5ui/ax5ui-uploader/master/dist/ax5uploader.js
https://cdn.rawgit.com/ax5ui/ax5ui-uploader/master/dist/ax5uploader.min.js
<div data-ax5uploader="upload1">
<input type="hidden" name="param1" value="value1"/>
<input type="hidden" name="param2" value="value2"/>
<button data-ax5uploader-button="selector" class="btn btn-primary">파일선택 (*/*)</button>
<div data-uploaded-box="upload1" data-ax5uploader-uploaded-box="inline"></div>
</div>
$(function () {
var upload1 = new ax5.ui.uploader();
upload1.setConfig({
//debug: true,
target: $('[data-ax5uploader="upload1"]'),
form: {
action: "api/fileUpload.php",
fileName: "fileData"
},
multiple: true,
manualUpload: false,
direction: "left",
progressBox: true,
dropZone: $('[data-uploaded-box="upload1"]'),
uploadedBox: {
target: $('[data-uploaded-box="upload1"]'),
icon: {
"download": '<i class="fa fa-download" aria-hidden="true"></i>',
"delete": '<i class="fa fa-minus-circle" aria-hidden="true"></i>'
},
columnKeys: {
name: "name",
type: "type",
size: "fileSize",
uploadedName: "uploadedName",
uploadedPath: "uploadedPath",
downloadPath: "downloadPath",
previewPath: "previewPath",
thumbnail: "thumbnail"
},
lang: {
supportedHTML5_emptyListMsg: '<div class="text-center">Drop files here or click to upload.</div>',
emptyListMsg: '<div class="text-center">Empty of List.</div>'
},
onchange: function () {
},
onclick: function () {
// console.log(this.cellType);
var fileIndex = this.fileIndex;
var file = this.uploadedFiles[fileIndex];
switch (this.cellType) {
case "delete":
dialog.confirm({
title: "AX5UI",
msg: "정말 삭제 하시겠습니까?"
}, function () {
if (this.key == "ok") {
$.ajax({
method: "post",
url: "api/fileDelete.php",
data: {
uploadedPath: file.uploadedPath,
saveName: file.saveName
},
success: function (res) {
upload1.removeFile(fileIndex);
}
});
}
});
break;
case "download":
window.open(file.uploadedPath + "/" + file.saveName, "_blank", "width=600, height=600");
break;
}
}
},
onprogress: function () {
},
onuploaded: function () {
},
onuploadComplete: function () {
}
});
$.ajax({
url: "api/fileListLoad.php",
success: function (res) {
upload1.setUploadedFiles(res);
}
});
});
If you have any questions, please refer to the following gitHub
'AX5UI' can be used with Bootstrap theme. The development of the distribution of the various UI plug-in. When you click the link to move to AX5UI index page.
AXBoot makes it easy to build web applications with Java & HTML5 Repeatable and noise development process are resolved by AXBoot.