Join the Stack Overflow Community
Stack Overflow is a community of 6.5 million programmers, just like you, helping each other.
Join them; it only takes a minute:
Sign up

Why rootScope (angularjs) returns null from mysql db BOLB format (it is audio) https://gist.github.com/Serge-Paradis/16590423fa02a042240dc5b28fc088c4

//Define an angular module for our app
var app = angular.module('myApp', []);

app.controller('tasksController', function($scope, $http) {
  getTask(); // Load all available tasks
  function getTask(){
  $http.post("ajax/getTask.php").success(function(data){
        $scope.tasks = data;
       });
  };
  });

share|improve this question

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.