Ankit  Shukla

Ankit Shukla

  • NA
  • 681
  • 110.7k

Get data from json array

Aug 8 2017 9:05 AM
Hello,
 
 I have angularJS code like this:
 
$scope.GetCities = function () {
//alert("yuyu");
var RouteNo = $scope.StoppageMaster.RouteNo;
if (RouteNo) {
$http({
method: 'POST',
url: '/Stoppage/GetCities/',
data: JSON.stringify({ RouteNo: RouteNo })
}).success(function (data, status, headers, config) {
$scope.Source1 = JSON.stringify(data);
alert($scope.Source1);
}).error(function (data, status, headers, config) {
$scope.message = 'Unexpected Error';
});
}
else {
$scope.states = null;
}
}
 
Output:
[{"Source":"Kanpur","Destination":"Lucknow"}] 
 
I need value of source. Please help. 
 

Answers (7)