ในคำง่าย ๆ
ใน Html - เพิ่มรหัสด้านล่างเท่านั้น
<form name="upload" class="form" data-ng-submit="addFile()">
<input type="file" name="file" multiple
onchange="angular.element(this).scope().uploadedFile(this)" />
<button type="submit">Upload </button>
</form>
ในการควบคุม - ฟังก์ชั่นนี้จะเรียกว่าเมื่อคุณคลิกปุ่ม "อัปโหลดไฟล์" มันจะอัปโหลดไฟล์ คุณสามารถคอนโซลได้
$scope.uploadedFile = function(element) {
$scope.$apply(function($scope) {
$scope.files = element.files;
});
}
เพิ่มตัวควบคุมเพิ่มเติมด้านล่างโค้ดเพิ่มเข้าไปในฟังก์ชั่น ฟังก์ชั่นนี้จะเรียกว่าเมื่อคุณคลิกที่ปุ่มซึ่งจะใช้ "กดปุ่ม API (POST)" มันจะส่งไฟล์ (ซึ่งอัปโหลด) และแบบฟอร์มข้อมูลไปยังแบ็กเอนด์
var url = httpURL + "/reporttojson"
var files=$scope.files;
for ( var i = 0; i < files.length; i++)
{
var fd = new FormData();
angular.forEach(files,function(file){
fd.append('file',file);
});
var data ={
msg : message,
sub : sub,
sendMail: sendMail,
selectUsersAcknowledge:false
};
fd.append("data", JSON.stringify(data));
$http.post(url, fd, {
withCredentials : false,
headers : {
'Content-Type' : undefined
},
transformRequest : angular.identity
}).success(function(data)
{
toastr.success("Notification sent successfully","",{timeOut: 2000});
$scope.removereport()
$timeout(function() {
location.reload();
}, 1000);
}).error(function(data)
{
toastr.success("Error in Sending Notification","",{timeOut: 2000});
$scope.removereport()
});
}
ในกรณีนี้ .. ฉันเพิ่มโค้ดด้านล่างเป็นข้อมูลในแบบฟอร์ม
var data ={
msg : message,
sub : sub,
sendMail: sendMail,
selectUsersAcknowledge:false
};