Ich arbeite an einer App mit Vue js
. Entsprechend meiner Einstellung muss ich beim Festlegen der Änderung eine Variable an meine URL übergeben.
<!-- language: lang-js -->
$.get('http://172.16.1.157:8002/firstcolumn/' + c1v + '/' + c1b, function (data) {
// some code...
});
Wenn meine App jedoch auf URL klickt, wird die folgende Meldung angezeigt.
Failed to load http://172.16.1.157:8002/firstcolumn/2017-03-01/2017-10-26: Redirect from 'http://172.16.1.157:8002/firstcolumn/2017-03-01/2017-10-26' to 'http://172.16.1.157:8002/firstcolumn/2017-03-01/2017-10-26/' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:8080' is therefore not allowed access.
http://172.16.1.157:8002/firstcolumn/...
. Wie Sie das tun, hängt davon ab, welche serverseitige Infrastruktur Sie verwenden.