Access-Control-Allow-Origin-Fehler
Ich benutze das folgende Skript -
<!DOCTYPE html>
<html>
<head>
<script src="jquery-1.9.1.min.js"></script>
<script>
function postForm() {
$.ajax({
type: 'POST',
url: 'http://10.0.0.8:9000/demo',
data: {"name" : "test"},
contentType: "application/json; charset=utf-8",
dataType: 'json',
})
}
</script>
</head>
<body>
<form id="ajaxForm" onsubmit="postForm(); return false; " method="post">
<input id="test" type="text" name="name" value="Hello JSON" />
<input type="submit" value="Submit JSON" />
</form>
</body>
</html>
Auf dem Computer, auf den ich zugreifen möchte, wird das Play Framework ausgeführt. Ich erhalte folgende Fehlermeldung:
OPTIONENhttp://10.0.0.8:9000/demo
404 (Nicht gefunden) jquery-1.9.1.min.js: 5 XMLHttpRequest kann nicht geladen werdenhttp://10.0.0.8:9000/demo
. Ursprunghttp://localhost:8080
wird von Access-Control-Allow-Origin nicht zugelassen.
Ich bin jetzt seit zwei Tagen ratlos. Kann mir jemand helfen?
Danke im Voraus