在利用nodejs开发中提示跨域问题应该怎么办,下面web建站小编给大家简单介绍一下具体解决方法!
解决方法如下:
const express = require('express'); const app = express(); app.use((req, res, next) => { res.header("Access-Control-Allow-Origin", "*"); res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept"); next(); }); app.get('/', (req, res) => { res.send('Hello world!'); }); app.listen(3000, () => { console.log('Server started on port 3000'); });
利用http-proxy-middleware解决node.js中存在的跨域问题?
标签: node跨域
上面是“如何解决node.js中存在的跨域问题?”的全面内容,想了解更多关于 nodejs 内容,请继续关注web建站教程。
当前网址:https://m.ipkd.cn/webs_4594.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!