Ich entwickle eine einfache Henker-Anwendung mit der random word API. Der Autor sagt, dass es JSONP-kompatibel ist.
Sehen Sie diese Fiddle: https://jsfiddle.net/1t8ur23p/7/
Der entsprechende Code ist hier. Dies funktioniert im IE korrekt und ich bekomme jedes Mal ein zufälliges Wort. Aber ich bekomme eine 404 in Firefox und Chrome und ich kann nicht sagen warum.
function getSecretWord() {
//call the random word API using JSONP request
$http.jsonp(
'http://randomword.setgetgo.com/get.php?callback=JSON_CALLBACK'
).then(function(response) {
console.log(response);
//apply the random word to the local secret word
$scope.word = response.data.Word;
//setup the other parts of the game
$scope.letters = response.data.Word.split("");
$scope.answerArray = response.data.Word.replace(/./g, '-')
.split("");
}).catch(function(response) {
//debugging... see the contents of the faulty response
$scope.error = response;
//there's been an error, just default the word to 'hello'
$scope.word = 'hello';
$scope.letters = $scope.word.split("");
$scope.answerArray = $scope.word.replace(/./g, '-').split(
"");
});
}
Ahh ... das war es. – Kyle