HuanMengProject/README.md
2024-07-13 15:43:28 +08:00

14 lines
347 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# HuanMengProject 开发文档
### 项目说明
```sh
# Program.cs 文件说明
# 输出的时候,将请求的参数转换成小写
c.ParameterFilter<LowercaseParameterFilter>();
c.RequestBodyFilter<LowercaseRequestFilter>();
//配置路由选项使URL全部小写
builder.Services.AddRouting(options => options.LowercaseUrls = true);
```