P粉3402642832023-08-19 00:12:20
$ npm install cors
var express = require('express') var cors = require('cors') var app = express() app.use(cors()) app.get('/products/:id', function (req, res, next) { res.json({msg: 'This is CORS-enabled for all origins!'}) }) app.listen(80, function () { console.log('CORS-enabled web server listening on port 80') })
For more details please see: https://www.npmjs.com/package/cors
Note: CORS must be enabled on the server running the API. You cannot enable this feature in client code. If the API supports CORS, the browser will initiate a request