web-dev-qa-db-ja.com

AngularJSでファイルのコンテンツやその他の詳細を取得する方法

送信ボタンをクリックしているときにファイルの内容を取得するにはどうすればよいですか。 1番目と2番目の入力のみを取得しています。スニペットを参照してください:

!DOCTYPE html>
<html lang="en">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<body>

<div ng-app="myApp" ng-controller="formCtrl">
  <form novalidate>
    First Name:<br>
    <input type="text" ng-model="user.firstName"><br>
    Last Name:<br>
    <input type="text" ng-model="user.lastName">
    <input type="file" ng-model="user.file">
    <br><br>
    <button ng-click="reset()">Submit</button>
  </form>
  <p>form = {{user}}</p>
  <p>master = {{master}}</p>
</div>
  <script>
var app = angular.module('myApp', []);
app.controller('formCtrl', function($scope) {
   $scope.reset = function(){
   console.log($scope.user)
   }
   
});
</script>

</body>
</html>
6
Mohammed

私はディレクティブを使用してフォーム内のファイルを処理しました(joakimblによって ここでの答え で示唆されています):

app.directive('validFile',[function() {
  return {
    require : 'ngModel',
    scope : {format: '@', upload : '&upload'},
    link : function(scope, el, attrs, ngModel) {
      // change event is fired when file is selected
      el.bind('change', function(event) {
        console.log(event.target.files[0]);
        scope.upload({file:event.target.files[0]});
        scope.$apply(function() {
          ngModel.$setViewValue(el.val());
          ngModel.$render();
        });
      })
    }
  }
}]);

あなたのHTMLで

<input type="file" valid-file upload="uploadFile(file)" ng-model="file">

ここでuploadFileは、ファイルの内容を取得できるコントローラーの関数になります

コントローラーコード

$scope.uploadFile = function(element) {
    $scope.user.file = element;
    console.log($scope.user);
  }

これを見てください plunker

2
nishant agrawal

ng-scopesを使用してファイルコンテンツに直接アクセスすることはできませんが、ネイティブJavaScript FileAPI を使用してファイルコンテンツを読み取ることはできます。これが working fiddle です。サーバー側にアップロードせずにファイルの内容を表示したいと思います。 filecontentfilesizefilenameアップロードせずにブラウザで。

見る

<div ng-controller="MyCtrl">
  <input type="file" id="myFileInput" />
  <br /><br />
  <button ng-click="submit()">
    Submit
  </button>
  <br /><br />
  <br /><br />
  <h1>
    Filename: {{ fileName }}
  </h1>
  <h2>
    File size: {{ fileSize }} Bytes
  </h2>
  <h2>
    File Content: {{ fileContent }}
  </h2>
</div>

AngularJSアプリ

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

myApp.controller('MyCtrl', function ($scope) {
    $scope.fileContent = '';
    $scope.fileSize = 0;
    $scope.fileName = '';
    $scope.submit = function () {
      var file = document.getElementById("myFileInput").files[0];
      if (file) {
        var aReader = new FileReader();
        aReader.readAsText(file, "UTF-8");
        aReader.onload = function (evt) {
            $scope.fileContent = aReader.result;
            $scope.fileName = document.getElementById("myFileInput").files[0].name;
            $scope.fileSize = document.getElementById("myFileInput").files[0].size;;
        }
        aReader.onerror = function (evt) {
            $scope.fileContent = "error";
        }
      }
    }
});
5
lin