RemMai

Results 7 comments of RemMai

个人:RemMai 地点:中国深圳 联系方式: [[email protected]](mailto:[email protected]) 使用场景:编写CSharp脚本,实现接口,爬取图床的相关参数。 官方网站:http://remmai.com/

> 我刚刚在 126 中进行了测试,现在在 stable 频道中可用,并确认该功能正在运行。关闭此问题。谢谢大家。 hi, my edge version is 129.0.2792.52, The network console still shows a 404 unavailable status, and I don't think this issue has been well...

用 IKun UI,写KUN 巴代码,享受终kun人生。 两kun,你知道我这两kun怎么过的吗?

On September 27, 2024, the version of Edge browser was 129.0.2792.65, and this issue has been fixed. I can now use this feature. Thank you, hardworking development experts.❤

> Minio 在社区版的 Web UI 中删除了管理功能,参见 [Minio/Minio#21325 (评论)](https://github.com/minio/minio/issues/21325#issuecomment-2913054543) To be honest, today I MINIO after the update, I found that I couldn't enter the background anyway, and I tossed for...

> 你好 > > 我们提供 seaweedfs 作为 MinIO 的可能替代品,如果您想试一试 Good, I think it's time for me to swap out the minio

先说结果。末尾有解决方案。 通过一晚上的代码比对和调试,我发现在 `Microsoft.AspNetCore.OpenApi`的`OpenApiDocumentService`服务的`GetOpenApiPathsAsync`方法内有一段代码[`.Where(_options.ShouldInclude)`](https://github.com/dotnet/aspnetcore/blob/bd6f77dbcf17cf991ae5a36693ae3aa2e1a80278/src/OpenApi/src/Services/OpenApiDocumentService.cs#L250C13-L250C43)将DynamicWebApi的Api全部过滤没了。 其中ShouldInclude默认是 [`ShouldInclude = (description) => description.GroupName == null || description.GroupName == DocumentName;`](https://github.com/dotnet/aspnetcore/blob/bd6f77dbcf17cf991ae5a36693ae3aa2e1a80278/src/OpenApi/src/Services/OpenApiOptions.cs#L34) 通过controller注册的正好符合`description.GroupName == null` 然而通过DynamicWebApi注册的Api接口的GroupName就是Class的名字,所以就没被openApi抓取到。 --- 解决方案: ` ervices.AddOpenApi(options => { options.ShouldInclude = (_ => true);...