I have a file dropzone to get data content of a file.
If I set the $scope.importData
to null, it is not possible to assign data inside the drop handler anymore.
$scope.handleDrop = function(evt) {
if (window.File && window.FileReader && window.FileList && window.Blob) {
var files = evt.dataTransfer ? evt.dataTransfer.files : evt.target.files,
file = files[0],
reader = new FileReader();
reader.onloadend = function(evt) {
var content = evt.target.result;
if('' !== content) {
$scope.importData = content; //will work as long you do not set $scope.importData to null
$scope.$apply();
}
};
reader.readAsText(file);
}
};
I figured out the problem might be the ng-include. If I do it without the include, it will work.
Please try the Plunker...
I have a file dropzone to get data content of a file.
If I set the $scope.importData
to null, it is not possible to assign data inside the drop handler anymore.
$scope.handleDrop = function(evt) {
if (window.File && window.FileReader && window.FileList && window.Blob) {
var files = evt.dataTransfer ? evt.dataTransfer.files : evt.target.files,
file = files[0],
reader = new FileReader();
reader.onloadend = function(evt) {
var content = evt.target.result;
if('' !== content) {
$scope.importData = content; //will work as long you do not set $scope.importData to null
$scope.$apply();
}
};
reader.readAsText(file);
}
};
I figured out the problem might be the ng-include. If I do it without the include, it will work.
Please try the Plunker...
http://plnkr.co/edit/BFOquRMLOqpL3arv1rtI?p=preview
Share Improve this question edited Jan 8, 2014 at 8:05 Mischa asked Jan 2, 2014 at 11:55 MischaMischa 1,0712 gold badges13 silver badges23 bronze badges 3- 2 Be sure you go through the Angular docs first before continuing with your project. DOM and event management is supposed to be handled from inside the directives, and not from the controllers. – Stewie Commented Jan 2, 2014 at 12:02
- @Stewie Okay, I updated the code and added directives for the events. But the problem is the same – Mischa Commented Jan 7, 2014 at 10:53
- 1 @BenjaminGruenbaum I improved the question. Hope this is okay. – Mischa Commented Jan 8, 2014 at 8:06
1 Answer
Reset to default 8 +50ngInclude creates a new scope that prototypically inherits from its parent scope, in your plunker example the parent scope being the scope of your pageCtrl
. The problem with your example is that inside $scope.addSetReImport
you are setting var $scope = this;
and in that context this
refers to ngInclude's scope and not your pageCtrl
scope, so $scope.importData = null;
effectively overrides the prototype importData
variable with a property on ngInclude's scope. The following screenshot from Chrome's console illustrates this override, this is from ngInclude's $scope:
So you end up with two importData
variables, one sitting on your ngInclude's scope and used inside your modal template, which is pointing to null, and a second one that sits on your pageCtrl
scope that is used during the handleDrop
function. Since handleDrop
will update the importData
on the pageCtrl
scope, it will not reflect on the property set on the ngInclude scope that your template is using.
To get your example working, just remove the var $scope = this;
from your addSetReImport
function, this ensures you are referencing the scope of your pageCtrl
. Here is a cloned plunker with a working example: http://plnkr.co/edit/LvYGKqLlL9Pxq0X5slyM?p=preview