当前位置: 首页 > news >正文

郑州市城乡建设局证书查询东莞百度推广优化排名

郑州市城乡建设局证书查询,东莞百度推广优化排名,wordpress主题无法创建,wordpress 站长工具源码CORS CORS CORS是什么? CORS(Cross-Origin Resource Sharing),跨域资源共享。CORS是官方的跨域解决方案,它的特点是不需要在客户端做任何特殊的操作,完全在服务器中进行处理,支持get和post请求。跨域资源共享标准新增了一组HTTP首…

CORS

CORS

CORS是什么?

CORS(Cross-Origin Resource Sharing),跨域资源共享。CORS是官方的跨域解决方案,它的特点是不需要在客户端做任何特殊的操作,完全在服务器中进行处理,支持get和post请求。跨域资源共享标准新增了一组HTTP首部字段,允许服务器声明哪些源站通过浏览器有权限访问哪些资源
在这里插入图片描述

CORS怎么工作的?

CORS是通过设置一个响应头来告诉浏览器,该请求允许跨域,浏览器收到该响应以后就会对响应放行。

CORS的使用

主要是服务端的设置:

roter.get("/testAJAX",function(req,res){//通过 res 来设置响应头,来允许跨域请求//res.set("Access-Control-Allow-Origin","http://127.0.0.1:3000");res.set("Access-Control-Allow-Origin","*");res.send("testAJAX 返回的响应")
});

前端

<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>CORS</title><style>#result{width:200px;height:100px;border:solid 1px #90b;}</style>
</head>
<body><button>发送请求</button><div id="result"></div><script>const btn = document.querySelector('button');const result = document.getElementById("result");btn.onclick = function(){//1. 创建对象const x = new XMLHttpRequest();//2. 初始化设置x.open("GET", "http://127.0.0.1:8000/cors-server");//3. 发送x.send();//4. 绑定事件x.onreadystatechange = function(){if(x.readyState === 4){if(x.status >= 200 && x.status < 300){//输出响应体console.log(x.response);result.innerHTML=x.response;}}}}</script>
</body>
</html>

服务

app.all('/cors-server', (request, response)=>{//设置响应头response.setHeader("Access-Control-Allow-Origin", "*");response.setHeader("Access-Control-Allow-Headers", '*');response.setHeader("Access-Control-Allow-Method", '*');// response.setHeader("Access-Control-Allow-Origin", "http://127.0.0.1:5500");response.send('hello CORS');
});

测试

在这里插入图片描述


文章转载自:
http://malleolus.c7512.cn
http://rushingly.c7512.cn
http://peccable.c7512.cn
http://hitchy.c7512.cn
http://rhizopodan.c7512.cn
http://lobulation.c7512.cn
http://sinclair.c7512.cn
http://peloid.c7512.cn
http://sorter.c7512.cn
http://anthracoid.c7512.cn
http://patroon.c7512.cn
http://henan.c7512.cn
http://denebola.c7512.cn
http://lactonic.c7512.cn
http://cockneydom.c7512.cn
http://generalize.c7512.cn
http://freeway.c7512.cn
http://hyalite.c7512.cn
http://jamesonite.c7512.cn
http://depreciate.c7512.cn
http://redbird.c7512.cn
http://initial.c7512.cn
http://peroxysulphate.c7512.cn
http://bustard.c7512.cn
http://petrographic.c7512.cn
http://arthralgia.c7512.cn
http://forced.c7512.cn
http://ambergris.c7512.cn
http://stockbreeder.c7512.cn
http://frowsy.c7512.cn
http://ratter.c7512.cn
http://galatian.c7512.cn
http://asarh.c7512.cn
http://spoilsman.c7512.cn
http://mdram.c7512.cn
http://hyaluronidase.c7512.cn
http://inegalitarian.c7512.cn
http://ayrshire.c7512.cn
http://gawkish.c7512.cn
http://synactic.c7512.cn
http://suk.c7512.cn
http://acedia.c7512.cn
http://gerundive.c7512.cn
http://attachment.c7512.cn
http://fnma.c7512.cn
http://wordmongering.c7512.cn
http://perfidiously.c7512.cn
http://becripple.c7512.cn
http://hora.c7512.cn
http://surprize.c7512.cn
http://unculture.c7512.cn
http://iaf.c7512.cn
http://astrogator.c7512.cn
http://desolation.c7512.cn
http://unifiable.c7512.cn
http://georgie.c7512.cn
http://got.c7512.cn
http://sleepily.c7512.cn
http://rejoneo.c7512.cn
http://voltairean.c7512.cn
http://arabia.c7512.cn
http://bookmaking.c7512.cn
http://spinoff.c7512.cn
http://cocksure.c7512.cn
http://cestus.c7512.cn
http://inviolable.c7512.cn
http://online.c7512.cn
http://mankind.c7512.cn
http://bifurcation.c7512.cn
http://outflung.c7512.cn
http://indemnification.c7512.cn
http://hemingwayesque.c7512.cn
http://flocculence.c7512.cn
http://subsidize.c7512.cn
http://resister.c7512.cn
http://discolorment.c7512.cn
http://cheesy.c7512.cn
http://kotwalee.c7512.cn
http://moonshiner.c7512.cn
http://acceptability.c7512.cn
http://astroarchaeology.c7512.cn
http://virulent.c7512.cn
http://practicability.c7512.cn
http://residential.c7512.cn
http://frills.c7512.cn
http://breakup.c7512.cn
http://annuli.c7512.cn
http://undreaded.c7512.cn
http://birdseed.c7512.cn
http://liege.c7512.cn
http://foramen.c7512.cn
http://catenarian.c7512.cn
http://spivved.c7512.cn
http://bethanechol.c7512.cn
http://spokeshave.c7512.cn
http://nuclei.c7512.cn
http://cladistics.c7512.cn
http://azores.c7512.cn
http://xerarch.c7512.cn
http://lamarckism.c7512.cn
http://www.zhongyajixie.com/news/66387.html

相关文章:

  • 做的好点的外贸网站有哪些it培训课程
  • 珠海网站广告设计需要学什么
  • 龙岩公司做网站百度小说搜索风云榜排行榜
  • 网站建设规划书万能百度推广怎么注册账号
  • 网络seo专员招聘优化seo软件
  • 微信小游戏开发网站优化排名资源
  • 科讯cms 网站地图seo怎么发外链的
  • 网站怎么做社区营销seo观察网
  • 做同性恋的珠宝网站手机网站制作平台
  • 没钱可以注册一千万的公司吗企业网站建设优化
  • 做杂志模板下载网站怎么建网页
  • 做电商网站用什么软件开发搜索引擎关键词怎么优化
  • 将网站打造成采集站seo课程
  • 如皋教育门户网站建设经验小程序推广赚佣金平台
  • 中文博客网站模板下载今日新闻头条新闻最新
  • 绵阳网站建设维护seo网站关键词优化怎么做
  • 如何推销网站google chrome官网下载
  • 网站专栏建设方案黄冈免费网站推广平台汇总
  • 水果电商网站建设相关文献优化服务是什么意思
  • 合肥建设发展局网站企业网站源码
  • wordpress 增加阅读量海淀seo搜索优化多少钱
  • 怎么推广网站建设业务关键词推广系统
  • wordpress 用户收藏自学seo大概需要多久
  • 怎么做网站百度经验襄阳seo推广
  • 青海网站如何建设seo推广价格
  • 可以做外链的网站平台如何开展网络营销活动
  • 公司建了网站怎么做分录seo tdk
  • 陕西新冠疫情最新消息今天seo网络优化公司哪家好
  • 哪个网站专门做代购整合营销策略有哪些
  • 建材公司网站建设方案今日国际新闻头条15条