Answers for "access to xmlhttprequest at 'http://103.199.175.199/haloocomcrm/casedetailsapi.php' from origin 'null' has been blocked by cors policy: no 'access-control-allow-origin' header is present on the requested resource."

32

Access to XMLHttpRequest at 'http://localhost:5000/mlphoto' from origin 'http://localhost:3000' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.

var express = require('express')
var cors = require('cors')  //use this
var app = express()

app.use(cors()) //and this

app.get('/user/:id', function (req, res, next) {
  res.json({user: 'CORS enabled'})
})

app.listen(5000, function () {
  console.log('CORS-enabled web server listening on port 5000')
})
Posted by: Guest on November-13-2020
0

Access to XMLHttpRequest at 'http://localhost/MySQL_pracs/InsertUser.php' from origin 'http://localhost:4200' has been blocked by CORS policy: Request header field content-type is not allowed by Access-Control-Allow-Headers in preflight response.

//Access to XMLHttpRequest at 'http://localhost/[api path].php' from origin 'http://localhost:4200' has been blocked by CORS policy: Request header field content-type is not allowed by Access-Control-Allow-Headers in preflight response.

//The error is simply saying that "Content-Type" is missing from "Access-Control-Allow-Headers".

//Therefore we need to add "Content-Type" to "Access-Control-Allow-Headers".

<?php 
header('Access-Control-Allow-Headers: Content-Type');
-----
?>
Posted by: Guest on October-10-2020

Code answers related to "access to xmlhttprequest at 'http://103.199.175.199/haloocomcrm/casedetailsapi.php' from origin 'null' has been blocked by cors policy: no 'access-control-allow-origin' header is present on the requested resource."

Code answers related to "Javascript"

Browse Popular Code Answers by Language