change this line from
 $scope.response = res.data1.result;
to
$scope.response = res.data.result;
The response will have a data object which you are accessing incorrectly.
solved Angular JS -> cannot read property [closed]
 
change this line from
 $scope.response = res.data1.result;
to
$scope.response = res.data.result;
The response will have a data object which you are accessing incorrectly.
solved Angular JS -> cannot read property [closed]