根据条件在方法上添加特性标签
如:在debug模式下方法不做权限检查
#if DEBUG
[AllowAnonymous]
#endif
[Authorize] [HttpGet("GetData")] #if DEBUG [AllowAnonymous] #endif public string GetData() { return _testService.GetDateTimeFormate(); }
如:在debug模式下方法不做权限检查
#if DEBUG
[AllowAnonymous]
#endif
[Authorize] [HttpGet("GetData")] #if DEBUG [AllowAnonymous] #endif public string GetData() { return _testService.GetDateTimeFormate(); }