Skip to content Skip to sidebar Skip to footer

How To Read And Write Url Content Into A File Using Angular Js

by using this code i can able to open the link i want..but I want to read that particular content of the url and write it into the notepad using ANGULAR JS .. this is 6the code i u

Solution 1:

You could use a module like the angular-file-saver. It might be slightly involved - but the steps are outlined on the module's NPM page. Basically, you need to install the angular-file-saver module and then modify your myApp module to inject it like this:

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

//You also need to change your controller to include the FileSaver and Blob params:

app.controller('myCtrl', ['$http','FileSaver', 'Blob', function($http, FileSaver, Blob){
   //now you can use the file save inside your $scope.foo like this:$scope.foo = function() {
        //get content of the remote URL (take care of the CORs)             $http.get('http://www.thehindu.com/news/').success(function (pageContent){               
          //here you create file and save content to itvar data = new Blob([pageContent], {type:   'text/plain;charset=utf-8' });
        FileSaver.saveAs(data, 'text.txt');            

      });

      };  
}]);

I hope that helps, give it a try and let me know how it goes;

Post a Comment for "How To Read And Write Url Content Into A File Using Angular Js"