#region 跨域问题 app.UseCors(builder => builder .AllowAnyOrigin() .AllowAnyMethod() .AllowAnyHeader() .AllowCredentials()); #endregion
core跨域问题
原文:https://www.cnblogs.com/fangyyy/p/10324598.html