系列文章
C#底层库–记录日志帮助类
本文链接:https://blog.csdn.net/youcheng_ge/article/details/124187709
文章目录
- 系列文章
- 前言
- 一、技术介绍
- 1.1 为什么会产生跨越
- 1.2 什么是跨越
- 二、问题描述
- 三、问题解决
- 3.1 方法一:前端Vue修改
- 3.2 方法二:后端允许Cors跨越访问
- 四、资源链接
前言
本专栏为【前端】,主要介绍前端知识点。
一、技术介绍
1.1 为什么会产生跨越
出于浏览器的同源策略限制。同源策略(Sameoriginpolicy)是一种约定,它是浏览器最核心也最基本的安全功能,如果缺少了同源策略,则浏览器的正常功能可能都会受到影响。可以说Web是构建在同源策略基础之上的,浏览器只是针对同源策略的一种实现。同源策略会阻止一个域的。
1.2 什么是跨越
当一个请求URL,协议名、域名、端口三者之间任意一个与当前页面URL不同即为跨域。
二、问题描述
我这里是vue前端采用axios
通信(使用vue+element+admin框架,通信交互使用request.js
,归根到底还是对axios
通信的封装)。
axios
通信需要自己解决跨越
,现在ajax
的封装已经不需要考虑跨越问题了,底层已经处理好了。
跨域的报错信息,具体如下:
三、问题解决
3.1 方法一:前端Vue修改
配置代理转发,将URL转换成新的URL。
操作步骤:vue.config.js文件,加以下代码:
devServer: {
// host: 'localhost', // 服务器 host,默认为 localhost
port: 18888,
open: false, // string | boolean,启动后是否打开浏览器,当为字符串时,打开指定浏览器
overlay: { // 设置编译出错或警告后,页面是否会直接显示信息
warnings: false,
errors: true
},
proxy: {
// 路由代理
'/prod-api': {
target: PLATFROM_CONFIG.PLATFROM_CONFIG.baseURL,
changeOrigin: true, // 如果接口跨域,需要进行这个参数配置
pathRewrite:{
'^/prod-api':'' // 重写请求,接口是/api/doc变为/doc
}
},
'/dev-api': {
target: PLATFROM_CONFIG.PLATFROM_CONFIG.baseURL,
changeOrigin: true, // 如果接口跨域,需要进行这个参数配置
pathRewrite:{
'^/dev-api':'' // 重写请求,接口是/api/doc变为/doc
}
},
'/api': {
target: "http://192.168.6.6:19999",
changeOrigin: true // 如果接口跨域,需要进行这个参数配置
}
}
},
/api
取决于你定义的格式是什么样的,具体可以看一下 .env.development
和 .env.production
文件。
我这里开发模式,URL头使用/dev-api
,那就对它做代理转发。
/api那个我是用于,文件上传、下载的转发的,文件上传比较特殊使用action
3.2 方法二:后端允许Cors跨越访问
①官方原生的net core webapi
Program.cs文件
//配置跨域
builder.Services.AddCors(c =>
{
c.AddDefaultPolicy(policy =>
{
policy.AllowAnyOrigin()//允许所有来源的访问
.AllowAnyHeader()//允许所有类型的请求头
.AllowAnyMethod();//允许所有类型的请求
});
});
启动跨越,在run之前
app.UseCors();
app.UseHttpsRedirection();
②采用服务注入的net core webapi
创建类SetupCors.cs
using YS.Common;
using Microsoft.AspNetCore.Builder;
using Microsoft.Extensions.DependencyInjection;
using System;
namespace YS.WebApi.Extensions
{
public static class SetupCors
{
public static void AddCorsSetup(this IServiceCollection services)
{
if (services == null) throw new ArgumentNullException(nameof(services));
services.AddCors(options =>
{
options.AddPolicy("LimitRequests", policy =>
{
//policy.WithOrigins(AppSettings.Configuration["Startup:AllowOrigins"].Split('|'))
policy.AllowAnyOrigin()//允许所有来源的访问
.AllowAnyHeader()//允许所有类型的请求头
.AllowAnyMethod();//允许所有类型的请求
});
});
}
public static void UseCorsSetup(this IApplicationBuilder app)
{
app.UseCors("LimitRequests");
}
}
}
服务注入使用跨越
//跨域设置
services.AddCorsSetup();
四、资源链接
vue.config.js文件
'use strict'
const path = require('path')
const defaultSettings = require('./src/settings.js')
const PLATFROM_CONFIG = require('./public/config')
function resolve(dir) {
return path.join(__dirname, dir)
}
const name = defaultSettings.title // 网址标题
const port = process.env.port || 18888 // 端口配置
// webpack.dev.js devServer 配置
module.exports = {
publicPath: '/', // 公共路径
outputDir: 'dist',
assetsDir: 'static',
lintOnSave: process.env.NODE_ENV === 'development',
productionSourceMap: false,
devServer: {
// host: 'localhost', // 服务器 host,默认为 localhost
port: 18888,
open: false, // string | boolean,启动后是否打开浏览器,当为字符串时,打开指定浏览器
overlay: { // 设置编译出错或警告后,页面是否会直接显示信息
warnings: false,
errors: true
},
proxy: {
// 路由代理
'/prod-api': {
target: PLATFROM_CONFIG.PLATFROM_CONFIG.baseURL,
changeOrigin: true, // 如果接口跨域,需要进行这个参数配置
pathRewrite:{
'^/prod-api':'' // 重写请求,接口是/api/doc变为/doc
}
},
'/dev-api': {
target: PLATFROM_CONFIG.PLATFROM_CONFIG.baseURL,
changeOrigin: true, // 如果接口跨域,需要进行这个参数配置
pathRewrite:{
'^/dev-api':'' // 重写请求,接口是/api/doc变为/doc
}
},
'/api': {
target: "http://192.168.6.6:19999",
changeOrigin: true // 如果接口跨域,需要进行这个参数配置
}
}
},
configureWebpack: {
// provide the app's title in webpack's name field, so that
// it can be accessed in index.html to inject the correct title.
name: name,
resolve: {
alias: {
'@': resolve('src')
}
},
performance: {
maxEntrypointSize: 10000000,
maxAssetSize: 30000000
}
},
chainWebpack(config) {
// it can improve the speed of the first screen, it is recommended to turn on preload
config.plugin('preload').tap(() => [
{
rel: 'preload',
// to ignore runtime.js
// https://github.com/vuejs/vue-cli/blob/dev/packages/@vue/cli-service/lib/config/app.js#L171
fileBlacklist: [/\.map$/, /hot-update\.js$/, /runtime\..*\.js$/],
include: 'initial'
}
])
// when there are many pages, it will cause too many meaningless requests
config.plugins.delete('prefetch')
// set svg-sprite-loader
config.module
.rule('svg')
.exclude.add(resolve('src/assets/icons'))
.end()
config.module
.rule('icons')
.test(/\.svg$/)
.include.add(resolve('src/assets/icons'))
.end()
.use('svg-sprite-loader')
.loader('svg-sprite-loader')
.options({
symbolId: 'icon-[name]'
})
.end()
// set preserveWhitespace
config.module
.rule('vue')
.use('vue-loader')
.loader('vue-loader')
.tap(options => {
options.compilerOptions.preserveWhitespace = true
return options
})
.end()
config
// https://webpack.js.org/configuration/devtool/#development
.when(process.env.NODE_ENV === 'development',
config => config.devtool('cheap-source-map')
)
config
.when(process.env.NODE_ENV !== 'development',
config => {
config
.plugin('ScriptExtHtmlWebpackPlugin')
.after('html')
.use('script-ext-html-webpack-plugin', [{
// `runtime` must same as runtimeChunk name. default is `runtime`
inline: /runtime\..*\.js$/
}])
.end()
config
.optimization.splitChunks({
chunks: 'all',
cacheGroups: {
libs: {
name: 'chunk-libs',
test: /[\\/]node_modules[\\/]/,
priority: 10,
chunks: 'initial' // only package third parties that are initially dependent
},
elementUI: {
name: 'chunk-elementUI', // split elementUI into a single package
priority: 20, // the weight needs to be larger than libs and app or it will be packaged into libs or app
test: /[\\/]node_modules[\\/]_?element-ui(.*)/ // in order to adapt to cnpm
},
commons: {
name: 'chunk-commons',
test: resolve('src/components'), // can customize your rules
minChunks: 3, // minimum common number
priority: 5,
reuseExistingChunk: true
}
}
})
config.optimization.runtimeChunk('single')
}
)
},
transpileDependencies: [
'vue-echarts',
'resize-detector'
]
}
Program.cs文件
using System.Configuration;
using WebApplication5;
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
//配置跨域
builder.Services.AddCors(c =>
{
c.AddDefaultPolicy(policy =>
{
policy.AllowAnyOrigin()//允许所有来源的访问
.AllowAnyHeader()//允许所有类型的请求头
.AllowAnyMethod();//允许所有类型的请求
});
});
builder.Services.AddControllers();
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddSwaggerGen();
var app = builder.Build();
app.UseCors();
app.UseHttpsRedirection();
if (app.Environment.IsDevelopment())
{
app.UseSwagger();
app.UseSwaggerUI();
}
app.UseHttpsRedirection();
app.UseAuthorization();
app.MapControllers();
app.Run();