让api请求允许跨域 header("Access-Control-Allow-Origin:*");header('Access-Control-Allow-Credentials:true');header('Access-Control-Allow-Methods:GET, POST, OPTIONS');…
1.创建Api项目 我用的是VS2019 Core3.1 .打开Vs2019 创建Asp.Net Core Web应用程序命名CoreWebApi 创建选择API 在Controller文件夹下面添加一个Api控制器 FileUp,修改Api的路由 [Route("api/[controller]/[action]")] 这样就可以访问到具体的某一个了 写一个测试 api using System; using System.Collections.Generic; using S…