.net core 3.0实现跨域

 环境:

    01. .net core 3.0

    02. vue-element-admin

.net core 3.0项目创建

我装的是最新的vs2019, 所以自带安装了.net core 3.0 环境, 现在3.1-preview已经推出了, 可以到官网下载安装.

使用dotnet命令创建项目

cd 项目目录
dotnet new webapi 

vue-element-admin

01. git clone https://github.com/PanJiaChen/vue-element-admin.git

02. npm install

.net core 3.0配置跨域

在startup.cs --> configure函数中, 添加

 

app.UseCors(builder => builder.WithOrigins("http://localhost:9527")

            .AllowAnyHeader()

            .AllowAnyMethod());

.net core 3.0实现跨域_第1张图片

vue-element-admin配置

将`http://127.0.0.1:${port}/mock` 改为 'https://localhost:5001'

.net core 3.0实现跨域_第2张图片

你可能感兴趣的:(.net core 3.0实现跨域)