การอัพโหลดไฟล์โดยใช้ AngularJS


296

นี่คือรูปแบบ HTML ของฉัน:

<form name="myForm" ng-submit="">
    <input ng-model='file' type="file"/>
    <input type="submit" value='Submit'/>
</form>

ฉันต้องการอัพโหลดภาพจากเครื่องในเครื่องและต้องการอ่านเนื้อหาของไฟล์ที่อัพโหลด ทั้งหมดนี้ฉันต้องการใช้กับ AngularJS

เมื่อฉันพยายามที่จะพิมพ์ค่าของ$scope.fileมันมาเป็นไม่ได้กำหนด


สิ่งที่เกี่ยวกับ: stackoverflow.com/questions/12979712/ …
Cherniv

คำตอบ:


344

บางคำตอบที่นี่เสนอให้ใช้FormData()แต่น่าเสียดายที่เป็นวัตถุของเบราว์เซอร์ที่ไม่สามารถใช้ได้ใน Internet Explorer 9 และด้านล่าง หากคุณต้องการสนับสนุนเบราว์เซอร์รุ่นเก่าคุณจะต้องใช้กลยุทธ์การสำรองข้อมูลเช่นการใช้<iframe>หรือ Flash

มีโมดูล Angular.js อยู่จำนวนมากเพื่อทำการอัปโหลดไฟล์ ทั้งสองนี้มีการสนับสนุนอย่างชัดเจนสำหรับเบราว์เซอร์รุ่นเก่า:

และตัวเลือกอื่น ๆ :

หนึ่งในนั้นควรเหมาะกับโครงการของคุณหรืออาจให้ข้อมูลเชิงลึกเกี่ยวกับวิธีเขียนโค้ดด้วยตัวคุณเอง


4
อีกหนึ่งโซลูชั่น (IaaS สำหรับการอัปโหลดไฟล์): github.com/uploadcare/angular-uploadcare
David Avsajanishvili

27
EggHead มีวิดีโอที่ดีในเรื่องนี้ - egghead.io/lessons/angularjs-file-uploads
Adam Zerner

2
danialfarid / angular-file-upload ถูกเปลี่ยนชื่อเป็น ng-file-upload
Michael

5
คำตอบอายุ 3 ปี IE 9 คือ DEAD ในปี 2559
user2404597

5
ฉันคิดว่าคุณควรอัปเดตคำตอบของคุณให้มีทางออกที่เหมาะสมแทนที่จะชี้ไปที่ลิงก์ นั่นคือวิธีการสแต็คล้น มิฉะนั้นเพียงแค่ทำให้เป็นความคิดเห็น
Alex Reynolds

178

วิธีที่ง่ายที่สุดคือใช้ HTML5 API คือ FileReader

HTML ตรงไปตรงมา:

<input type="file" id="file" name="file"/>
<button ng-click="add()">Add</button>

ในตัวควบคุมของคุณกำหนดวิธีการ 'เพิ่ม':

$scope.add = function() {
    var f = document.getElementById('file').files[0],
        r = new FileReader();

    r.onloadend = function(e) {
      var data = e.target.result;
      //send your binary data via $http or $resource or do anything else with it
    }

    r.readAsBinaryString(f);
}

ความเข้ากันได้ของเบราว์เซอร์

เบราว์เซอร์เดสก์ท็อป

Edge 12, Firefox (Gecko) 3.6 (1.9.2), Chrome 7, Opera * 12.02, Safari 6.0.2

เบราว์เซอร์มือถือ

Firefox (Gecko) 32, Chrome 3, Opera * 11.5, Safari 6.1

หมายเหตุ: เมธอด readAsBinaryString () เลิกใช้แล้วและreadAsArrayBuffer ()ควรใช้แทน


10
FileReader เป็นชั้นจากมาตรฐาน HTML5 ไฟล์ API w3.org/TR/FileAPI ช่วยให้คุณสามารถอ่านข้อมูลจากไฟล์ที่ระบุในองค์ประกอบอินพุต HTML และประมวลผลภายในonloadendฟังก์ชั่นการโทรกลับ คุณไม่จำเป็นต้องใช้ห้องสมุดใด ๆ เพื่อใช้ API นี้มันมีอยู่แล้วในเบราว์เซอร์ของคุณ หวังว่านี่จะช่วยได้
yagger

15
FileReader.readAsBinaryStringถูกคัดค้าน ณ วันที่ 12 กรกฎาคม 2555 Working Draft จาก W3C
เชน Stillwell

13
คุณไม่ควรเข้าถึง DOM ด้วยเชิงมุม เป็นการปฏิบัติที่เลวร้ายมาก
jeanmatthieud

9
@ Siderex ไม่ได้อยู่ในคอนโทรลเลอร์ แต่มันยอดเยี่ยมมากที่ทำจากไดเรกทีฟ อันที่จริงนี่คือสิ่งที่มีไว้สำหรับ คุณสามารถอ่านเกี่ยวกับเรื่องนี้ได้ใน Angular docs docs.angularjs.org/guide/directive
yagger

1
@yagger จะมีเหตุผลใดทำไมการเชื่อมโยงของคุณจะถูกอ้างอิง FileReaderSync ของreadAsArrayBufferวิธี (ซึ่งมีเฉพาะในคนงานเว็บ) แทนที่จะเป็นปกติ async FileReader API ?
doldt

58

นี่คือวิธีเบราว์เซอร์ที่ทันสมัยโดยไม่มีห้องสมุดของบุคคลที่สาม ใช้งานได้กับเบราว์เซอร์ล่าสุดทั้งหมด

 app.directive('myDirective', function (httpPostFactory) {
    return {
        restrict: 'A',
        scope: true,
        link: function (scope, element, attr) {

            element.bind('change', function () {
                var formData = new FormData();
                formData.append('file', element[0].files[0]);
                httpPostFactory('upload_image.php', formData, function (callback) {
                   // recieve image name to use in a ng-src 
                    console.log(callback);
                });
            });

        }
    };
});

app.factory('httpPostFactory', function ($http) {
    return function (file, data, callback) {
        $http({
            url: file,
            method: "POST",
            data: data,
            headers: {'Content-Type': undefined}
        }).success(function (response) {
            callback(response);
        });
    };
});

HTML:

<input data-my-Directive type="file" name="file">

PHP:

if (isset($_FILES['file']) && $_FILES['file']['error'] == 0) {

// uploads image in the folder images
    $temp = explode(".", $_FILES["file"]["name"]);
    $newfilename = substr(md5(time()), 0, 10) . '.' . end($temp);
    move_uploaded_file($_FILES['file']['tmp_name'], 'images/' . $newfilename);

// give callback to your angular code with the image src name
    echo json_encode($newfilename);
}

js fiddle (เฉพาะส่วนหน้า) https://jsfiddle.net/vince123/8d18tsey/31/


คุณจะดึงไฟล์ในโหนดได้อย่างไร
Juicy

มีรายละเอียดเพิ่มเติมอีกไหม? คุณต้องการng-submitแบบฟอร์มการกระทำหรือ? สิ่งนี้ไม่ได้ทำอะไรเลย
อารอน

@ Emaborsa สวัสดีฉันเพิ่ม jsfiddle และทำตัวอย่างรหัส PHP ที่สมบูรณ์ยิ่งขึ้น มันส่งภาพหลังจากค่าของไฟล์ที่มีการเปลี่ยนแปลงจึงไม่จำเป็นต้องส่ง NG
Vince Verhoeven

ทางออกที่ง่ายที่สุดที่สมบูรณ์แบบ แต่ใช้เวลานานกว่าจะหาวิธีใช้บริการ WCF ของฉันเพื่อรับมือกับข้อมูลที่ถูกอัปโหลด มันเป็นสิ่งสำคัญที่คุณใช้กระแสข้อมูลและผ่านมันผ่านสิ่งที่ต้องการ MultiParser จริงอ่านในข้อมูลของไฟล์: stackoverflow.com/a/23702692/391605 มิฉะนั้นคุณจะได้รับการจัดเก็บไบต์ดิบของ "------ WebKitFormBoundary การจัดการเนื้อหา: ... ฯลฯ .. "
Mike Gledhill

ฉันต้องการเพิ่มคุณสมบัติ 'transformRequest: angular.identity' ไปยังวัตถุคำขอ $ http ดังที่แสดงโดย Manoy Ojha จุดสว่างเพิ่มเติมมิฉะนั้นจะไม่สามารถตั้งค่าประเภทเนื้อหาได้อย่างถูกต้องและตัวอย่างจะไม่ทำงาน
Gregor Slavec

38

ด้านล่างเป็นตัวอย่างการอัปโหลดไฟล์ที่ใช้งานได้:

http://jsfiddle.net/vishalvasani/4hqVu/

ในฟังก์ชั่นนี้เรียกว่า

setFiles

จากมุมมองซึ่งจะอัปเดตอาร์เรย์ไฟล์ในตัวควบคุม

หรือ

คุณสามารถตรวจสอบการอัปโหลดไฟล์ jQuery โดยใช้ AngularJS

http://blueimp.github.io/jQuery-File-Upload/angularjs.html


สวัสดีฉันกำลังมองหาบางอย่างที่ฉันสามารถอัปโหลดไฟล์เดียวและแสดงด้านล่าง อย่างไรก็ตามในตัวอย่างของคุณฉันไม่สามารถทำแบบเดียวกันได้ ไม่เป็นไร แต่ฉันใหม่สำหรับ angularjs นี้และความตั้งใจของฉันที่จะเรียนรู้ที่จะทำวัตถุประสงค์นี้ในวิธีที่เรียบง่าย แต่มีประสิทธิภาพ
Aditya Sethi

สิ่งนี้ช่วยได้มาก ขอบคุณ!
RachelD

ตัวอย่างที่ยอดเยี่ยมโดยไม่ต้องใช้ไลบรารี / ส่วนขยายเพิ่มเติม ขอบคุณ
markdsievers

4
มีประโยชน์มาก ๆ เพียงแค่ทราบ .. ใช้ File API ซึ่งไม่ทำงานใน IE9 หรือต่ำกว่า
ArjaaAine

มีความคิดใดบ้างที่ฉันจะได้รับข้อผิดพลาดจากผลลัพธ์ เซิร์ฟเวอร์อาจ trow ข้อผิดพลาดและผมอยากจะแสดงข้อความข้อผิดพลาดที่ ...
CularBytes

17

คุณสามารถบรรลุไฟล์ที่ดีและโฟลเดอร์โดยใช้การอัปโหลดflow.js

https://github.com/flowjs/ng-flow

ตรวจสอบตัวอย่างที่นี่

http://flowjs.github.io/ng-flow/

ไม่รองรับ IE7, IE8, IE9 ดังนั้นในที่สุดคุณจะต้องใช้เลเยอร์ความเข้ากันได้

https://github.com/flowjs/fusty-flow.js


`flow.js 'นั้นยอดเยี่ยม แต่ยังมีเอกสารไม่เพียงพอ ฉันต้องจัดการการอัปโหลดและเพิ่มการแสดงตัวอย่างเพียงครั้งเดียวและยังส่งปุ่มเหตุการณ์แยกออกจากกัน แต่ฉันไม่ทราบว่าต้องทำอย่างไร
ฟรานซิสโรดริกูส

14

ใช้onchangeเหตุการณ์เพื่อส่งผ่านอิลิเมนต์ไฟล์อินพุตไปยังฟังก์ชันของคุณ

<input type="file" onchange="angular.element(this).scope().fileSelected(this)" />

ดังนั้นเมื่อผู้ใช้เลือกไฟล์คุณมีการอ้างอิงถึงมันโดยที่ผู้ใช้ไม่จำเป็นต้องคลิกปุ่ม "เพิ่ม" หรือ "อัปโหลด"

$scope.fileSelected = function (element) {
    var myFileSelected = element.files[0];
};

2
สิ่งนี้ไม่ทำงานตามที่ต้องการ นี่คือเวิร์กโฟลว์ของฉัน: 1. รีเฟรชหน้า 2. เพิ่มไฟล์ใหม่ ** การเพิ่มไฟล์แรกจะไม่ได้กำหนดเสมอ ** 3. เพิ่มไฟล์อื่น นับจากนี้ไปทุกไฟล์ที่อัปโหลดเป็นไฟล์ก่อนหน้าที่ฉันเพิ่ม ดังนั้นสำหรับไฟล์ที่ 2 ที่ฉันเพิ่มสิ่งนี้จะอัปโหลดไฟล์แรกที่ฉันเพิ่ม (ซึ่งล้มเหลวจริง ๆ )
Pulkit Pahwa

1
วิธีที่ดีที่สุด!
Stepan Yakovenko

11

ฉันลองทางเลือกทั้งหมดที่ @Anoyz (คำตอบที่ถูกต้อง) ให้ ... และทางออกที่ดีที่สุดคือhttps://github.com/danialfarid/angular-file-upload

คุณสมบัติบางอย่าง:

  • ความคืบหน้า
  • Multifiles
  • ทุ่ง
  • เบราว์เซอร์เก่า (IE8-9)

มันใช้ได้ดีสำหรับฉัน คุณเพียงแค่ต้องใส่ใจกับคำแนะนำ

ในฝั่งเซิร์ฟเวอร์ฉันใช้ NodeJs, Express 4 และ Multer middleware เพื่อจัดการคำขอหลายส่วน


คุณแสดงภาพได้อย่างไร? จากแบ็กเอนด์พวกเขาจะประสบความสำเร็จ แต่พวกเขาจะได้รับการบันทึกเป็นnlzt9LJWRrAZEO3ZteZUOgGcแต่ไม่มีรูปแบบ. png จะเพิ่มอย่างไร
Saras Arya

9

HTML

<html>
    <head></head>

<body ng-app = "myApp">

  <form ng-controller = "myCtrl">
     <input type = "file" file-model="files" multiple/>
     <button ng-click = "uploadFile()">upload me</button>
     <li ng-repeat="file in files">{{file.name}}</li>
  </form>

สคริป

  <script src = 
     "http://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script>
  <script>
    angular.module('myApp', []).directive('fileModel', ['$parse', function ($parse) {
        return {
           restrict: 'A',
           link: function(scope, element, attrs) {
              element.bind('change', function(){
              $parse(attrs.fileModel).assign(scope,element[0].files)
                 scope.$apply();
              });
           }
        };
     }]).controller('myCtrl', ['$scope', '$http', function($scope, $http){


       $scope.uploadFile=function(){
       var fd=new FormData();
        console.log($scope.files);
        angular.forEach($scope.files,function(file){
        fd.append('file',file);
        });
       $http.post('http://localhost:1337/mediaobject/upload',fd,
           {
               transformRequest: angular.identity,
               headers: {'Content-Type': undefined}                     
            }).success(function(d)
                {
                    console.log(d);
                })         
       }
     }]);

  </script>


9

<input type=file>องค์ประกอบไม่ได้เริ่มต้นจากการทำงานกับNG-รูปแบบคำสั่ง มันต้องการคำสั่งที่กำหนดเอง :

สาธิตการทำงานของselect-ng-filesDirective ที่ทำงานร่วมกับng-model1

angular.module("app",[]);

angular.module("app").directive("selectNgFiles", function() {
  return {
    require: "ngModel",
    link: function postLink(scope,elem,attrs,ngModel) {
      elem.on("change", function(e) {
        var files = elem[0].files;
        ngModel.$setViewValue(files);
      })
    }
  }
});
<script src="//unpkg.com/angular/angular.js"></script>
  <body ng-app="app">
    <h1>AngularJS Input `type=file` Demo</h1>
    
    <input type="file" select-ng-files ng-model="fileList" multiple>
    
    <h2>Files</h2>
    <div ng-repeat="file in fileList">
      {{file.name}}
    </div>
  </body>


$http.postจากFileList

$scope.upload = function(url, fileList) {
    var config = { headers: { 'Content-Type': undefined },
                   transformResponse: angular.identity
                 };
    var promises = fileList.map(function(file) {
        return $http.post(url, file, config);
    });
    return $q.all(promises);
};

เมื่อมีการส่งโพสต์กับเป็นวัตถุไฟล์'Content-Type': undefinedมันเป็นสิ่งสำคัญที่จะชุด วิธี XHR ส่งแล้วจะตรวจสอบวัตถุไฟล์โดยอัตโนมัติและกำหนดชนิดของเนื้อหา


7

ง่ายด้วยคำสั่ง

Html:

<input type="file" file-upload multiple/>

JS:

app.directive('fileUpload', function () {
return {
    scope: true,        //create a new scope
    link: function (scope, el, attrs) {
        el.bind('change', function (event) {
            var files = event.target.files;
            //iterate files since 'multiple' may be specified on the element
            for (var i = 0;i<files.length;i++) {
                //emit event upward
                scope.$emit("fileSelected", { file: files[i] });
            }                                       
        });
    }
};

ในคำสั่งเรามั่นใจว่ามีการสร้างขอบเขตใหม่จากนั้นรับฟังการเปลี่ยนแปลงที่เกิดขึ้นกับองค์ประกอบอินพุตไฟล์ เมื่อตรวจพบการเปลี่ยนแปลงโดยปล่อยเหตุการณ์ให้กับขอบเขตบรรพบุรุษทั้งหมด (ขึ้นไป) พร้อมกับวัตถุไฟล์เป็นพารามิเตอร์

ในตัวควบคุมของคุณ:

$scope.files = [];

//listen for the file selected event
$scope.$on("fileSelected", function (event, args) {
    $scope.$apply(function () {            
        //add the file object to the scope's files collection
        $scope.files.push(args.file);
    });
});

จากนั้นในการโทรอาแจ็กซ์ของคุณ:

data: { model: $scope.model, files: $scope.files }

http://shazwazza.com/post/uploading-files-and-json-data-in-the-same-request-with-angular-js/


7

ฉันคิดว่านี่คือการอัปโหลดไฟล์เชิงมุม:

NG-ไฟล์ที่อัปโหลด

Lightweight Angular JS directive เพื่ออัปโหลดไฟล์

นี่คือหน้าDEMOคุณสมบัติ

  • รองรับการอัปโหลด, ยกเลิก / ยกเลิกการอัปโหลดขณะที่กำลังดำเนินการ, การลากและวางไฟล์ (html5), การลากและวางไดเรกทอรี (webkit), CORS, PUT (html5) / วิธี POST, การตรวจสอบความถูกต้องของประเภทไฟล์และขนาด / เสียง / วิดีโอ
  • การอัปโหลดไฟล์ข้ามเบราว์เซอร์และ FileReader (HTML5 และไม่ใช่ HTML5) พร้อม Flash polyfill FileAPI อนุญาตการตรวจสอบ / แก้ไขฝั่งไคลเอ็นต์ก่อนที่จะอัปโหลดไฟล์
  • อัปโหลดโดยตรงไปยังบริการ db CouchDB, imgur, ฯลฯ ... ด้วยประเภทเนื้อหาของไฟล์โดยใช้ Upload.http () สิ่งนี้ช่วยให้เหตุการณ์ความคืบหน้าสำหรับการร้องขอ http POST / PUT เชิงมุม
  • แยกไฟล์ shim, ไฟล์ FileAPI ถูกโหลดตามความต้องการสำหรับโค้ดที่ไม่ใช่ HTML5 ซึ่งหมายความว่าไม่มีการโหลด / โค้ดเพิ่มเติมหากคุณต้องการการสนับสนุน HTML5
  • น้ำหนักเบาโดยใช้ $ http ปกติเพื่ออัปโหลด (พร้อม shim สำหรับเบราว์เซอร์ที่ไม่ใช่ HTML5) ดังนั้นคุณลักษณะ $ http เชิงมุมทั้งหมดจึงมีให้ใช้งาน

https://github.com/danialfarid/ng-file-upload


6

การอัพโหลดไฟล์และข้อมูล json ของคุณในเวลาเดียวกัน

// FIRST SOLUTION
 var _post = function (file, jsonData) {
            $http({
                url: your url,
                method: "POST",
                headers: { 'Content-Type': undefined },
                transformRequest: function (data) {
                    var formData = new FormData();
                    formData.append("model", angular.toJson(data.model));
                    formData.append("file", data.files);
                    return formData;
                },
                data: { model: jsonData, files: file }
            }).then(function (response) {
                ;
            });
        }
// END OF FIRST SOLUTION

// SECOND SOLUTION
// If you can add plural file and  If above code give an error.
// You can try following code
 var _post = function (file, jsonData) {
            $http({
                url: your url,
                method: "POST",
                headers: { 'Content-Type': undefined },
                transformRequest: function (data) {
                    var formData = new FormData();
                    formData.append("model", angular.toJson(data.model));
                for (var i = 0; i < data.files.length; i++) {
                    // add each file to
                    // the form data and iteratively name them
                    formData.append("file" + i, data.files[i]);
                }
                    return formData;
                },
                data: { model: jsonData, files: file }
            }).then(function (response) {
                ;
            });
        }
// END OF SECOND SOLUTION


4

คุณสามารถใช้FormDataวัตถุที่ปลอดภัยและรวดเร็ว:

// Store the file object when input field is changed
$scope.contentChanged = function(event){
    if (!event.files.length)
        return null;

    $scope.content = new FormData();
    $scope.content.append('fileUpload', event.files[0]); 
    $scope.$apply();
}

// Upload the file over HTTP
$scope.upload = function(){
    $http({
        method: 'POST', 
        url: '/remote/url',
        headers: {'Content-Type': undefined },
        data: $scope.content,
    }).success(function(response) {
        // Uploading complete
        console.log('Request finished', response);
    });
}

คุณช่วยอธิบายได้ไหมว่า 'contentChanged' ใช้ตรงไหน
Marc J. Schmidt

เมื่ออินพุตไฟล์เปลี่ยนแปลงการเรียก funtion นี้จะเริ่มกระบวนการอัปโหลด
Farsheed

1
เนื่องจากไม่มี<input type="file" ng-change="contentChanged($event)">วิธีการทำมันได้หรือไม่
Marc J. Schmidt

3

http://jsfiddle.net/vishalvasani/4hqVu/ทำงานได้ดีใน chrome และ IE (หากคุณอัปเดต CSS เล็กน้อยในพื้นหลังภาพ) ใช้สำหรับอัปเดตแถบความคืบหน้า:

 scope.progress = Math.round(evt.loaded * 100 / evt.total)

แต่ในข้อมูล [เปอร์เซ็นต์] ของ FireFox angular ไม่ได้รับการอัปเดตใน DOM สำเร็จแม้ว่าไฟล์จะอัปโหลดสำเร็จ


สำหรับ FF คุณสามารถฟังloadเหตุการณ์และหากความยาวสามารถคำนวณได้ให้ดำเนินการเหตุการณ์ความคืบหน้าเพื่อระบุว่าการอัปโหลดสำเร็จ github.com/danialfarid/angular-file-uploadเรียบร้อยแล้วดูแล
danial

มันอยู่ที่นั่น แต่ในซอที่ได้รับยังตรวจสอบและนำไปใช้ ยังไม่มีความหวังใน FF
mayankcpdixit

ฉันคิดว่าถ้าคุณเพียงโทรไปที่ uploadProgress ใน uploadComplete ควรจะทำงานให้กับ FF
danial

ไม่มันไม่ได้และแม้ว่าคุณจะสามารถอธิบายได้ว่าทำไม ฉันให้ลิงค์เพื่อเล่นซอในโพสต์ของฉัน หากเป็นไปได้คุณสามารถโปรดอัปเดตให้ทำงานใน FF และลิงค์ความคิดเห็นของโซลูชันได้ที่นี่
mayankcpdixit

Firefox รุ่นใด
danial

3

คุณอาจพิจารณา IaaS สำหรับการอัปโหลดไฟล์เช่นUploadcare มีแพ็คเกจสำหรับ Angular: https://github.com/uploadcare/angular-uploadcare

ในทางเทคนิคมันนำมาใช้เป็นคำสั่งให้ตัวเลือกที่แตกต่างกันสำหรับการอัปโหลดและการปรับแต่งสำหรับภาพที่อัปโหลดภายในวิดเจ็ต:

<uploadcare-widget
  ng-model="object.image.info.uuid"
  data-public-key="YOURKEYHERE"
  data-locale="en"
  data-tabs="file url"
  data-images-only="true"
  data-path-value="true"
  data-preview-step="true"
  data-clearable="true"
  data-multiple="false"
  data-crop="400:200"
  on-upload-complete="onUCUploadComplete(info)"
  on-widget-ready="onUCWidgetReady(widget)"
  value="{{ object.image.info.cdnUrl }}"
 />

ตัวเลือกการกำหนดค่าเพิ่มเติมที่จะเล่นกับ: https://uploadcare.com/widget/configure/


3

ฉันรู้ว่านี่เป็นรายการล่าช้า แต่ฉันได้สร้างคำสั่งอัพโหลดอย่างง่าย ซึ่งคุณสามารถทำงานได้ในเวลาไม่นาน!

<input type="file" multiple ng-simple-upload web-api-url="/api/Upload" callback-fn="myCallback" />

ng-simple-uploadเพิ่มเติมบน Github พร้อมตัวอย่างโดยใช้ Web API


3

HTML

<input type="file" id="file" name='file' onchange="angular.element(this).scope().profileimage(this)" />

เพิ่มวิธี 'profileimage ()' ให้กับคอนโทรลเลอร์ของคุณ

    $scope.profileimage = function(selectimage) {
      console.log(selectimage.files[0]);
 var selectfile=selectimage.files[0];
        r = new FileReader();
        r.onloadend = function (e) {
            debugger;
            var data = e.target.result;

        }
        r.readAsBinaryString(selectfile);
    }

2

นี่ควรเป็นการอัปเดต / แสดงความคิดเห็นต่อคำตอบของ @ jquery-guru แต่เนื่องจากฉันมีตัวแทนไม่มากพอมันจะไปที่นี่ จะแก้ไขข้อผิดพลาดที่ตอนนี้สร้างขึ้นโดยรหัส

https://jsfiddle.net/vzhrqotw/

การเปลี่ยนแปลงนั้นเป็นพื้นฐาน:

FileUploadCtrl.$inject = ['$scope']
function FileUploadCtrl(scope) {

ถึง:

app.controller('FileUploadCtrl', function($scope)
{

รู้สึกอิสระที่จะย้ายไปยังตำแหน่งที่เหมาะสมมากขึ้นถ้าต้องการ


2

ฉันอ่านเธรดทั้งหมดแล้วและโซลูชัน HTML5 API นั้นดูดีที่สุด แต่มันจะเปลี่ยนไฟล์ไบนารีของฉันทำให้มันเสียหายในลักษณะที่ฉันไม่ได้ตรวจสอบ โซลูชันที่ทำงานได้อย่างสมบูรณ์แบบสำหรับฉันคือ:

HTML:

<input type="file" id="msds" ng-model="msds" name="msds"/>
<button ng-click="msds_update()">
    Upload
</button>

JS:

msds_update = function() {
    var f = document.getElementById('msds').files[0],
        r = new FileReader();
    r.onloadend = function(e) {
        var data = e.target.result;
        console.log(data);
        var fd = new FormData();
        fd.append('file', data);
        fd.append('file_name', f.name);
        $http.post('server_handler.php', fd, {
            transformRequest: angular.identity,
            headers: {'Content-Type': undefined}
        })
        .success(function(){
            console.log('success');
        })
        .error(function(){
            console.log('error');
        });
    };
    r.readAsDataURL(f);
}

ฝั่งเซิร์ฟเวอร์ (PHP):

$file_content = $_POST['file'];
$file_content = substr($file_content,
    strlen('data:text/plain;base64,'));
$file_content = base64_decode($file_content);

1

ฉันสามารถอัพโหลดไฟล์โดยใช้ AngularJS โดยใช้รหัสด้านล่าง:

fileสำหรับอาร์กิวเมนต์ที่จะต้องผ่านฟังก์ชั่นngUploadFileUploadคือ$scope.fileเป็นต่อคำถามของคุณ

transformRequest: []จุดสำคัญที่นี่คือการใช้งาน การทำเช่นนี้จะป้องกันไม่ให้ $ http กับเนื้อหาของไฟล์

       function getFileBuffer(file) {
            var deferred = new $q.defer();
            var reader = new FileReader();
            reader.onloadend = function (e) {
                deferred.resolve(e.target.result);
            }
            reader.onerror = function (e) {
                deferred.reject(e.target.error);
            }

            reader.readAsArrayBuffer(file);
            return deferred.promise;
        }

        function ngUploadFileUpload(endPointUrl, file) {

            var deferred = new $q.defer();
            getFileBuffer(file).then(function (arrayBuffer) {

                $http({
                    method: 'POST',
                    url: endPointUrl,
                    headers: {
                        "accept": "application/json;odata=verbose",
                        'X-RequestDigest': spContext.securityValidation,
                        "content-length": arrayBuffer.byteLength
                    },
                    data: arrayBuffer,
                    transformRequest: []
                }).then(function (data) {
                    deferred.resolve(data);
                }, function (error) {
                    deferred.reject(error);
                    console.error("Error", error)
                });
            }, function (error) {
                console.error("Error", error)
            });

            return deferred.promise;

        }

0

คำตอบที่ยอมรับข้างต้นไม่สามารถทำงานร่วมกับเบราว์เซอร์ หากบางคนมีปัญหาความเข้ากันลองนี้

ซอ

ดูรหัส

 <div ng-controller="MyCtrl">
      <input type="file" id="file" name="file"/>
      <br>
      <button ng-click="add()">Add</button>
      <p>{{data}}</p>
    </div>

รหัสคอนโทรลเลอร์

var myApp = angular.module('myApp',[]);

function MyCtrl($scope) {
    $scope.data = 'none';    
    $scope.add = function(){
      var f = document.getElementById('file').files[0],
          r = new FileReader();
      r.onloadend = function(e){        
          var binary = "";
var bytes = new Uint8Array(e.target.result);
var length = bytes.byteLength;

for (var i = 0; i < length; i++) 
{
    binary += String.fromCharCode(bytes[i]);
}

$scope.data = (binary).toString();

          alert($scope.data);
      }
      r.readAsArrayBuffer(f);
    }
}

0

ในคำง่าย ๆ

ใน 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
         };

0
<form id="csv_file_form" ng-submit="submit_import_csv()" method="POST" enctype="multipart/form-data">
    <input ng-model='file' type="file"/>
    <input type="submit" value='Submit'/>
</form>

ในคอนโทรลเลอร์ angularJS

$scope.submit_import_csv = function(){

        var formData = new FormData(document.getElementById("csv_file_form"));
        console.log(formData);

        $.ajax({
            url: "import",
            type: 'POST',
            data:  formData,
            mimeType:"multipart/form-data",
            contentType: false,
            cache: false,
            processData:false,
            success: function(result, textStatus, jqXHR)
            {
            console.log(result);
            }
        });

        return false;
    }

0

เราใช้ HTML, CSS และ AngularJS ตัวอย่างต่อไปนี้แสดงเกี่ยวกับวิธีอัปโหลดไฟล์โดยใช้ AngularJS

<html>

   <head>
      <script src = "https://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script>
   </head>

   <body ng-app = "myApp">

      <div ng-controller = "myCtrl">
         <input type = "file" file-model = "myFile"/>
         <button ng-click = "uploadFile()">upload me</button>
      </div>

      <script>
         var myApp = angular.module('myApp', []);

         myApp.directive('fileModel', ['$parse', function ($parse) {
            return {
               restrict: 'A',
               link: function(scope, element, attrs) {
                  var model = $parse(attrs.fileModel);
                  var modelSetter = model.assign;

                  element.bind('change', function(){
                     scope.$apply(function(){
                        modelSetter(scope, element[0].files[0]);
                     });
                  });
               }
            };
         }]);

         myApp.service('fileUpload', ['$http', function ($http) {
            this.uploadFileToUrl = function(file, uploadUrl){
               var fd = new FormData();
               fd.append('file', file);

               $http.post(uploadUrl, fd, {
                  transformRequest: angular.identity,
                  headers: {'Content-Type': undefined}
               })

               .success(function(){
               })

               .error(function(){
               });
            }
         }]);

         myApp.controller('myCtrl', ['$scope', 'fileUpload', function($scope, fileUpload){
            $scope.uploadFile = function(){
               var file = $scope.myFile;

               console.log('file is ' );
               console.dir(file);

               var uploadUrl = "/fileUpload";
               fileUpload.uploadFileToUrl(file, uploadUrl);
            };
         }]);

      </script>

   </body>
</html>

สิ่งนี้มาจากTutorialsPointแต่อย่างน้อยคุณก็ทำได้ดีในการแก้ไขตัวอย่างซึ่งไม่สามารถทำได้เพราะข้อผิดพลาดที่เห็นได้ชัด!
เบนิโต้

0

ตัวอย่างการใช้งาน Simple Directive ( ng-file-model ):

.directive("ngFileModel", [function () {
  return {
      $scope: {
          ngFileModel: "="
      },
      link: function ($scope:any, element, attributes) {
          element.bind("change", function (changeEvent:any) {
              var reader = new FileReader();
              reader.onload = function (loadEvent) {
                  $scope.$apply(function () {
                      $scope.ngFileModel = {
                          lastModified: changeEvent.target.files[0].lastModified,
                          lastModifiedDate: changeEvent.target.files[0].lastModifiedDate,
                          name: changeEvent.target.files[0].name,
                          size: changeEvent.target.files[0].size,
                          type: changeEvent.target.files[0].type,
                          data: changeEvent.target.files[0]
                      };
                  });
              }
              reader.readAsDataURL(changeEvent.target.files[0]);
          });
      }
  }
}])

และใช้FormDataในการอัปโหลดไฟล์ในฟังก์ชั่นของคุณ

var formData = new FormData();
 formData.append("document", $scope.ngFileModel.data)
 formData.append("user_id", $scope.userId)

เครดิตทั้งหมดไปที่ https://github.com/mistralworks/ng-file-model

ฉันได้พบกับ probelm ขนาดเล็กคุณสามารถตรวจสอบได้ที่นี่: https://github.com/mistralworks/ng-file-model/issues/7

ในที่สุดนี่คือ repo ที่แยกแล้ว: https://github.com/okasha93/ng-file-model/blob/patch-1/ng-file-model.js


0

รหัสจะช่วยในการแทรกไฟล์

<body ng-app = "myApp">
<form ng-controller="insert_Ctrl"  method="post" action=""  name="myForm" enctype="multipart/form-data" novalidate>
    <div>
        <p><input type="file" ng-model="myFile" class="form-control"  onchange="angular.element(this).scope().uploadedFile(this)">
            <span style="color:red" ng-show="(myForm.myFile.$error.required&&myForm.myFile.$touched)">Select Picture</span>
        </p>
    </div>
    <div>
        <input type="button" name="submit"  ng-click="uploadFile()" class="btn-primary" ng-disabled="myForm.myFile.$invalid" value="insert">
    </div>
</form>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script> 
<script src="insert.js"></script>
</body>

insert.js

var app = angular.module('myApp',[]);
app.service('uploadFile', ['$http','$window', function ($http,$window) {
    this.uploadFiletoServer = function(file,uploadUrl){
        var fd = new FormData();
        fd.append('file', file);
        $http.post(uploadUrl, fd, {
            transformRequest: angular.identity,
            headers: {'Content-Type': undefined}
        })
        .success(function(data){
            alert("insert successfull");
            $window.location.href = ' ';//your window location
        })
        .error(function(){
            alert("Error");
        });
    }
}]);
app.controller('insert_Ctrl',  ['$scope', 'uploadFile', function($scope, uploadFile){
    $scope.uploadFile = function() {
        $scope.myFile = $scope.files[0];
        var file = $scope.myFile;
        var url = "save_data.php";
        uploadFile.uploadFiletoServer(file,url);
    };
    $scope.uploadedFile = function(element) {
        var reader = new FileReader();
        reader.onload = function(event) {
            $scope.$apply(function($scope) {
                $scope.files = element.files;
                $scope.src = event.target.result  
            });
        }
        reader.readAsDataURL(element.files[0]);
    }
}]);

save_data.php

<?php
    require "dbconnection.php";
    $ext = pathinfo($_FILES['file']['name'],PATHINFO_EXTENSION);
    $image = time().'.'.$ext;
    move_uploaded_file($_FILES["file"]["tmp_name"],"upload/".$image);
    $query="insert into test_table values ('null','$image')";
    mysqli_query($con,$query);
?>

0

งานนี้

file.html

<html>
   <head>
      <script src = "https://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script>
   </head>
   <body ng-app = "app">
      <div ng-controller = "myCtrl">
         <input type = "file" file-model = "myFile"/>
         <button ng-click = "uploadFile()">upload me</button>
      </div>
   </body>
   <script src="controller.js"></script>
</html>

controller.js

     var app = angular.module('app', []);

     app.service('fileUpload', ['$http', function ($http) {
        this.uploadFileToUrl = function(file, uploadUrl){
           var fd = new FormData();
           fd.append('file', file);

           $http.post(uploadUrl, fd, {
              transformRequest: angular.identity,
              headers: {'Content-Type': undefined}
           }).success(function(res){
                console.log(res);
           }).error(function(error){
                console.log(error);
           });
        }
     }]);

     app.controller('fileCtrl', ['$scope', 'fileUpload', function($scope, fileUpload){
        $scope.uploadFile = function(){
           var file = $scope.myFile;

           console.log('file is ' );
           console.dir(file);

           var uploadUrl = "/fileUpload.php";  // upload url stands for api endpoint to handle upload to directory
           fileUpload.uploadFileToUrl(file, uploadUrl);
        };
     }]);

  </script>

fileupload.php

  <?php
    $ext = pathinfo($_FILES['file']['name'],PATHINFO_EXTENSION);
    $image = time().'.'.$ext;
    move_uploaded_file($_FILES["file"]["tmp_name"],__DIR__. ' \\'.$image);
  ?>

0

อัพโหลดไฟล์

<input type="file" name="resume" onchange="angular.element(this).scope().uploadResume()" ng-model="fileupload" id="resume" />


        $scope.uploadResume = function () { 
            var f = document.getElementById('resume').files[0];
            $scope.selectedResumeName = f.name;
            $scope.selectedResumeType = f.type;
            r = new FileReader();

            r.onloadend = function (e) { 
                $scope.data = e.target.result;
            }

            r.readAsDataURL(f);

        };

ดาวน์โหลดไฟล์:

          <a href="{{applicant.resume}}" download> download resume</a>

var app = angular.module("myApp", []);

            app.config(['$compileProvider', function ($compileProvider) {
                $compileProvider.aHrefSanitizationWhitelist(/^\s*(https?|local|data|chrome-extension):/);
                $compileProvider.imgSrcSanitizationWhitelist(/^\s*(https?|local|data|chrome-extension):/);

            }]);

-1
app.directive('ngUpload', function () {   
  return {    
    restrict: 'A',  
    link: function (scope, element, attrs) {

      var options = {};
      options.enableControls = attrs['uploadOptionsEnableControls'];

      // get scope function to execute on successful form upload
      if (attrs['ngUpload']) {

        element.attr("target", "upload_iframe");
        element.attr("method", "post");

        // Append a timestamp field to the url to prevent browser caching results
        element.attr("action", element.attr("action") + "?_t=" + new Date().getTime());

        element.attr("enctype", "multipart/form-data");
        element.attr("encoding", "multipart/form-data");

        // Retrieve the callback function
        var fn = attrs['ngUpload'].split('(')[0];
        var callbackFn = scope.$eval(fn);
        if (callbackFn == null || callbackFn == undefined || !angular.isFunction(callbackFn))
        {
          var message = "The expression on the ngUpload directive does not point to a valid function.";
          // console.error(message);
          throw message + "\n";
        }                      

        // Helper function to create new  i frame for each form submission
        var addNewDisposableIframe = function (submitControl) {
          // create a new iframe
          var iframe = $("<iframe id='upload_iframe' name='upload_iframe' border='0' width='0' height='0' style='width: 0px; height: 0px;
border: none; display: none' />");

          // attach function to load event of the iframe
          iframe.bind('load', function () {

              // get content - requires jQuery
              var content = iframe.contents().find('body').text();

              // execute the upload response function in the active scope
              scope.$apply(function () { callbackFn(content, content !== "" /* upload completed */); });

              // remove iframe
              if (content != "") // Fixes a bug in Google Chrome that dispose the iframe before content is ready.
                setTimeout(function () { iframe.remove(); }, 250);


              submitControl.attr('disabled', null);
              submitControl.attr('title', 'Click to start upload.');
            });

          // add the new iframe to application
          element.parent().append(iframe);
        };

        // 1) get the upload submit control(s) on the form (submitters must be decorated with the 'ng-upload-submit' class)
        // 2) attach a handler to the controls' click event
        $('.upload-submit', element).click(
          function () {

            addNewDisposableIframe($(this) /* pass the submit control */);

            scope.$apply(function () { callbackFn("Please wait...", false /* upload not completed */); });



            var enabled = true;
            if (options.enableControls === null || options.enableControls === undefined || options.enableControls.length >= 0) {
              // disable the submit control on click
              $(this).attr('disabled', 'disabled');
              enabled = false;
            }

            $(this).attr('title', (enabled ? '[ENABLED]: ' : '[DISABLED]: ') + 'Uploading, please wait...');

            // submit the form
            $(element).submit();
          }
        ).attr('title', 'Click to start upload.');
      }
      else
        alert("No callback function found on the ngUpload directive.");     
    }   
  }; 
});



<form class="form form-inline" name="uploadForm" id="uploadForm"
ng-upload="uploadForm12"  action="rest/uploadHelpFile"  method="post"
enctype="multipart/form-data" style="margin-top: 3px;margin-left:
6px"> <button type="submit" id="mbUploadBtn" class="upload-submit"
ng-hide="true"></button> </form>

@RequestMapping(value = "/uploadHelpFile", method =
RequestMethod.POST)   public @ResponseBody String
uploadHelpFile(@RequestParam(value = "file") CommonsMultipartFile[]
file,@RequestParam(value = "fileName") String
fileName,@RequestParam(value = "helpFileType") String
helpFileType,@RequestParam(value = "helpFileName") String
helpFileName) { }

โปรดจัดรูปแบบคำตอบของคุณว่าไม่ใช่รูปแบบที่ถูกต้อง
Saineshwar
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.