It gaves me error when I m trying to call this controller .
hiren.controller('hirenz' , function($scope , $http , $location , $routeParams){
$http.post((rootURL + "music") , {'alpha' : $routeParams.alpha , 'name' : $routeParams.name ,
'album' : $routeParams.albumname }).success(function(data){
var parsedJson = JSON.parse(data) ;
console.log(parsedJson.name);
});
});
Here is the "data" that i am calling from server
{
"name": [
"Adhar - Adhar ",
"Adhar - Adhare Opshori ",
"Adhar - Aj Neshay "
],
"url": [
" Opshori/Adhar - Adhar (music.bd).mp3",
" Opshori/Adhar - Adhar (music.bd).mp3",
" Opshori/Adhar - Adhar (music.bd).mp3"
]
}
It gaves me error when I m trying to call this controller .
hiren.controller('hirenz' , function($scope , $http , $location , $routeParams){
$http.post((rootURL + "music") , {'alpha' : $routeParams.alpha , 'name' : $routeParams.name ,
'album' : $routeParams.albumname }).success(function(data){
var parsedJson = JSON.parse(data) ;
console.log(parsedJson.name);
});
});
Here is the "data" that i am calling from server
{
"name": [
"Adhar - Adhar ",
"Adhar - Adhare Opshori ",
"Adhar - Aj Neshay "
],
"url": [
"http://music--bd./Music/A/Adhar/Adhare Opshori/Adhar - Adhar (music..bd).mp3",
"http://music--bd./Music/A/Adhar/Adhare Opshori/Adhar - Adhar (music..bd).mp3",
"http://music--bd./Music/A/Adhar/Adhare Opshori/Adhar - Adhar (music..bd).mp3"
]
}
Share
Improve this question
asked Jan 23, 2014 at 12:13
pyprismpyprism
3,00810 gold badges52 silver badges85 bronze badges
1
- 'SyntaxError: Unexpected token o' – pyprism Commented Jan 23, 2014 at 12:17
2 Answers
Reset to default 10You are parsing something which is not a string. It might be already in form of JSON object.
You do not need to parse it.
If you change var parsedJson = JSON.parse(data) ;
to var parsedJson = data;
The error will go off.
This error occurs when JSON is not properly formed. Check it with JSLint