I started recently to use angular js, I like how it works, I want to know how can I set the charset encoding as a header.
My json file contains special characters ( French language ).
something like : Remplaçant
Is there any way to decode that into UTF-8 after retreiving it :
here is my code :
$http.get("http://int.footballclub.orange.com/live/lineup/fr_lineup_253959.json"
})
.success(function (response) {
$scope.lineup = response;
});