摘要:
当我又一次要搞 CI/CD 时,却怎么都想不起来如何注册,看下方截图: 最后求助同事,发现是我浏览器背景颜色的问题,更换了颜色之后,看下方截图: 真相大白了!哭晕在厕所 阅读全文
摘要:
在.csproj配置文件中设置如下项: <PropertyGroup> <IsTransformWebConfigDisabled>false</IsTransformWebConfigDisabled> </PropertyGroup> 阅读全文
摘要:
在 Options 被禁用的情况下,会间接导致出现 CORS 错误。见下方截图: 第二个请求是第一个的预检请求 第二个请求是 Options 请求 关于Options,更多内容,请自行搜索。 解决办法 第一种思路是避免发出 Options 类型的请求,是否需支持 Options 类型请求自行评估。P 阅读全文
摘要:
请注意,如果列表包含NULL,则IN或NOT IN的结果将为UNKNOWN,意味着将会被认为符合条件,例如: select case when '1' not in ('0',null) then 'not in' else 'in' end 结果如下: (No column name)in 在筛选 阅读全文
摘要:
dotnet core 6.0 reference: https://learn.microsoft.com/zh-cn/aspnet/core/security/cors?view=aspnetcore-6.0 test: https://learn.microsoft.com/zh-cn/asp 阅读全文
摘要:
try { // Map a drive System.Diagnostics.Process.Start(@"C:\WINDOWS\system32\net.exe", $"use J: {_fileUploadConst.UploadPath} {_fileUploadConst.Passwor 阅读全文
摘要:
以下两种方式应该都可以,PS:第一种经过测试没有问题,第二个没有测试。 https://blog.miniasp.com/post/2020/09/29/Disable-Ctrl-W-keyboard-shortcut-in-Google-Chrome 主要推荐了 Better Ctrl-W htt 阅读全文
摘要:
coding tool: vscode 版本: 1.71.0 (user setup) Node.js: 16.14.2 V8: 10.2.154.15-electron.0 OS: Windows_NT x64 10.0.19042 typescript version: 4.8.2 fronte 阅读全文
摘要:
参考文章:https://www.mssqltips.com/sqlservertip/6798/drop-all-tables-sql-server/ Use xxx GO -- drop constraints DECLARE @DropConstraints NVARCHAR(max) = ' 阅读全文
摘要:
VS:2022 System:Windows 10 Target Framework: netstandard2.0 / net6.0 描述:突发,以前都好好的,通过 CLI build 没有问题 出现此问题的步骤: Publish to folder (deployment mode 改为 sel 阅读全文