• This project
    • Loading...
  • Sign in

임연수 / FaceDetection

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 2
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • FaceDetection
  • app
  • app.js
  • 임연수's avatar
    sparse emotion at facedetection.html · 0c4f6247 ...
    0c4f6247
    add accessories attributes
    임연수 authored 2018-12-14 04:28:03 +0900
app.js 405 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
var mainApp = angular.module('mainApp',[
    'ngRoute'
]);

mainApp.controller('mainAdminController', ['$scope', '$http',
    function ($scope, $http, angularTable) {
        $http({
            method: 'GET',
            url: 'send2api'
        })
            .then(function (response) {
                $scope.data = response.data;
                console.log(response.data[0])
            });
    }
]);