当前位置:网站首页>Three solutions to solve cross-domain in egg framework
Three solutions to solve cross-domain in egg framework
2022-08-05 08:09:00 【M78_Domestic 007】
Option 1: Use the egg-cors plug-in provided by the egg framework to realize cross-domain resource sharing of cors
1. Download the plugin in the project file directory, open the terminal and enter: npm i egg-cors.
2. Open the configuration file config of the project.

2.1. Open plugin.js to open the plugin, and copy this code in the object.
cors:{enable: true,package: 'egg-cors',}2.2. Open the config.default.js file to configure the plug-in, and copy this code in the arrow function:
config.cors = {origin: '*',allowMethods: 'GET,HEAD,PUT,POST,DELETE,PATCH'}At this time, cross-domain access can be achieved. The value of the origin attribute here "*" means that all pages can be accessed. We can replace the * with the domain name we specify, but it can only specify one. If you want toSpecify multiple functions that change the origin property value to the following:
config.cors = {// origin: ['http://localhost'],origin:function(ctx) { //Set to allow requests from the specified domain nameconsole.log(ctx);const whiteList = ['http://www.baidu.com','http://www.hqyj.com'];let url = ctx.request.header.origin;if(whiteList.includes(url)){return url;}return 'http://localhost' //By default, local requests are allowed to cross domains},allowMethods: 'GET,HEAD,PUT,POST,DELETE,PATCH'};Option 2: Implementing jsonp
There are two ways:
1. Configure the following code in the config.default.js file:
config.jsonp = {callback: 'cb', // recognize the `cb` parameter in querylimit: 100, // Specify the maximum character of the function name, here is set to a maximum of 100 characters};Then do the following in our routing file:
module.exports = app => {const jsonp = app.jsonp();app.router.get("Defined interface address", jsonp, app.controller."Specific location");};2. Configure directly in the routing file
module.exports = app => {const jsonp = app.jsonp({callback: 'cb',limit: 100,});app.router.get("Defined interface address", jsonp, app.controller."Specific location");};Option 3: Proxy
Agent is the technology that runs the most in actual development. The request module is no longer used in the egg framework, but the curl() method that comes with the browser is used to directly use the curl method to request resources across domains in our own backend.
The code is as follows:
//In the logic control layer home.jsasync cors(){let data1=await this.ctx.curl("http://www.baidu.com",{method:"GET",data:{pwd:123}})this.ctx.body=data1}"http://www.baidu.com" is the requested URL, {method:"GET",data:{pwd:123}} can be omitted, method is the request method, and data is the passed parameter.
The data1 obtained at this time is buffer binary data, and we also need toString to convert it into a string.
Additional point:
The processing order of the backend during network requests: Static files> route matching (matching in order), that is, the address of the data interface we set cannot be the same as the address of the statically hosted page, because the execution order is to execute the statically hosted page first, executeAfter that, it will no longer be executed, and we will never be able to request our data interface;
"/*" asterisk routing means that all URLs can be matched.
边栏推荐
猜你喜欢

【结构体内功修炼】结构体实现位段(二)

DataFrame insert row and column at specified position

Chapter3、色调映射

Redis implements distributed lock-principle-detailed explanation of the problem

VXE-Table融合多语言

Illegal key size 报错问题

Game Thinking 19: Multi-dimensional calculation related to games: point product, cross product, point-line-surface distance calculation

爬虫从入门到入牢

嵌入式系统:基本定时器

谷歌零碎笔记之MVCC(草稿)
随机推荐
【结构体内功修炼】枚举和联合的奥秘(三)
高效使用数码相机的诀窍
链表专项之环形链表
props 后面的数据流是什么?
漂亮MM和普通MM的区别
Fiddler tool explanation
Qt编写自定义控件:文字聚光灯效果之一
力扣每日一题
爬虫从入门到入牢
[Structural Internal Power Cultivation] Structural Realization Stages (2)
2006年星座运势全解-巨蟹
JVM运行流程,运行时数据区,类加载,垃圾回收,JMM解析
奇怪的Access错误
力扣刷题八月第一天
向美国人学习“如何快乐”
SVG星球大战样式Toggle切换开关按钮
DataFrame在指定位置插入行和列
SQL SERVER关于主从表触发器设计
双向循环带头链表
长期招聘嵌入式开发-深圳宝安