智云SRM-WEBAPI(目前客户通用API)
王 垚
2022-11-07 0bdcbda68ecfb7ef85702629e997bcd6b4a68831
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using Microsoft.Owin;
using Microsoft.Owin.Cors;
using Owin;
using System;
using System.Threading.Tasks;
 
[assembly: OwinStartup(typeof(WebAPI.Startup))]
namespace WebAPI
{
    public class Startup
    {
        public void Configuration(IAppBuilder app)
        {
            
            app.UseCors(CorsOptions.AllowAll); //跨域
            app.MapSignalR();
        }
    }
}