|
|
|
รบกวนเรื่องการ import csv โดยใช้ ajax หน่อยคับ พอมีโค้ดตัวอย่างป่าวคับ |
|
|
|
|
|
|
|
ลองหาพวก jquery plugin มาใช้ครับ เช่น uploadify ครับ
|
|
|
|
|
Date :
2014-10-07 16:08:32 |
By :
Manussawin |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช้ exel ไปเลย ไม่ต้อง csv ก็ได้ https://phpexcel.codeplex.com/
Code (JavaScript)
function importConsignee(){
if(chkReqVal('frmImportConsignee') == 0 || chkReqDl('frmImportConsignee') == 0){
alert('Please check data , some field not complete');
return false;
}
var formData = new FormData($('#frmImportConsignee')[0]);
$.blockUI({message:''})
$.ajax({
url: 'upload_manager.php?action=importConsignee',
type: 'POST',
success: function (data) {
//alert('');
$('#showResult').html(data);
$('#fileATT').val('');
$('#cus_id').val('');
$.unblockUI();
return false;
},
error: function(e){console.log(e)},
data: formData,
cache: false,
contentType: false,
processData: false
});
}
|
|
|
|
|
Date :
2014-10-07 17:13:09 |
By :
gaowteen |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|