| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- app=angular.module('app', []);
- app.controller('main', function($scope,$http,$sce) {
- $scope.news=[];
- $scope.newsArticle="";
- $scope.getNews = function() {
- $http.get("/pymnts/articles/").then(
- function(data) {
- /*
- data.data=data.data.map(function(el) {
- if (el.STATUS!="DISCONNECTED")
- el.STATUS=el.STATUS+" "+el.ELAPSED;
- return el;
- });
- */
- $scope.news=data.data.articles;
- },
- function(data){
- console.log("error");
- console.log(data);
- });
- };
- $scope.getArticle = function(el) {
- $http.get("/pymnts/article/"+el._id).then(
- function(data) {
- $scope.newsArticle=$sce.trustAsHtml(data.data.articles.html);
- },
- function(data){
- }
- );
- };
- $scope.filter = function() {
- $http.post("/pymnts/articles/",{"mindate":$scope.mindate,"maxdate":$scope.maxdate,"site":$scope.site,"keyword":$scope.keywod,"minweight":$scope.minweight}).then(
- function(data) {
- $scope.news=data.data.articles;
- },
- function(data) {
- }
- );
- };
- $scope.getNews();
- /*
- $scope.download = function(book) {
- $http.post("/test/?adasasd",{"type":"BOOK","book":book}).then(
- function(data) {
- $scope.getList();
- },
- function(data){
- console.log("error");
- console.log(data);
- });
- };
- $scope.searchBook = function(book,extension){
- $http.post("/test/?ewqewqewq", {"type":"search","book":book,"extension":extension}).then(
- function(data) {
- console.log("success");
- $scope.getList();
- },
- function(data){
- console.log("err");
- });
- };
- */
- });
|