当前位置:网站首页>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.
边栏推荐
猜你喜欢
随机推荐
php fails to write data to mysql
Insights in programming
CROS和JSONP配置
MySQL 数据库 报错 The server quit without updating PID file (/var/lib/mysql/localhost.localdomain.pid)
原型&原型链
星座理想情人
路由----router
Fiddler tool explanation
uniapp time component encapsulates year-month-day-hour-minute-second
SQL SERVER on master-slave table trigger design
创业者如何吸引风险投资商
Beautifully painted MM set
SQL SERVER关于主从表触发器设计
YOLOv3 SPP理论详解(包括CIoU及Focal loss)
Redis实现分布式锁-原理-问题详解
Version number naming convention
Liunx教程超详细(完整)
RedisTemplate: 报错template not initialized; call afterPropertiesSet() before using it
力扣刷题八月第一天
RedisTemplate: error template not initialized; call afterPropertiesSet() before using it









