$http.get('data/stock.json').success(function(data){
$scope.stock = data;
})
and i also tried this
$http.get('data/stock.json').then(function(data){
$scope.stock = data;
})
my Data is in stock.json file no problem in HTML which is working and i m working on angular 1.6 version