0

ファイルのアップロードでIE9の問題を修正しようとしています。JQuery のファイル アップロード プラグインを使用しており、デフォルトで入力ファイルを使用した場合は問題ありませんが、非表示の入力ファイルを使用し、偽のボタンをクリックしてイベントをトリガーすると、機能しません。

これを実現するために、次の 2 つのディレクティブを使用しています。

ecm_directives.directive('fileupload', function(){
  return {
   restrict: 'A',
    scope: {
     done: '&',
     progress: '&'
   },
   link: function(scope, element, attrs) {
   var optionsObj = {
    dataType: 'json'
   };

  if (scope.done) {
    optionsObj.done = function(e, data) {
      scope.$apply(function() {
        scope.done({e: e, data: data});
        });
    };
  }

  if (scope.progress) {
    optionsObj.progress = function(e, data) {
      scope.$apply(function() {
        scope.progress({e: e, data: data});
      });
    };
  }

    //the above could easily be done in a loop, to cover
    //all API's that Fileupload provides
    element.fileupload(optionsObj);
  }
 }
});



ecm_directives.directive('uploader', function () {
  return {
    restrict: 'E',
    link: function(scope, element, attrs,ctrl) {
          element.find("button").bind("click", function(){
              element.find(":file").trigger("click").bind("change",function(){
                console.log("change");
                scope.kaka = element.find("input").val();
                scope.$apply();
                console.log("changed",  scope.kaka);
            })
          });
      }
  }
});

そして、これはhtmlです

<div class="fake-file" ng-show="!candidateFiles.cedula.selected">
      <uploader>
        <button type="button" class="fake-input">
          <span class="placeholder ng-binding"> Seleccione un archivo de su ordenador</span>
        </button>

        <button type="button" class="btn fake-btn fake-upload-btn ng-binding">Subir</button>
        <input ng-model="ccedulaCandidato" id="cedula-file" type="file" name="ccedulaCandidato" data-url="/backend/documents/save/" class="file_upload_btn ng-isolate-scope ng-scope ng-pristine ng-valid" style="display:none" fileupload="" done="uploadFinished(e, data)">
      </uploader>
    </div>

ポイントはその行です: element.find(":file").bind("change",function(){ }

IE9 ではここに入らないでください。何か考えはありますか?

4

1 に答える 1