Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

'SyntaxError: Unexpected token o' with angularjs

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-com-bd.com/Music/A/Adhar/Adhare Opshori/Adhar - Adhar (music.com.bd).mp3",
        "http://music-com-bd.com/Music/A/Adhar/Adhare Opshori/Adhar - Adhar (music.com.bd).mp3",
        "http://music-com-bd.com/Music/A/Adhar/Adhare Opshori/Adhar - Adhar (music.com.bd).mp3"
    ]
}
like image 704
pyprism Avatar asked Dec 12 '22 08:12

pyprism


1 Answers

You 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.

like image 196
Jayram Avatar answered Dec 28 '22 18:12

Jayram