Http 的 Get 方法傳入 List 參數 Posted on 2023-01-21 Edited on 2025-04-16 In .Net Word count in article: 85 Reading time ≈ 1 mins. 建立類別 123456public class User { public string Name { get; set; } public int Age { get; set; }} Read more »
使用 AddInMemoryCollection 設定 Configuration 進行單元測試 Posted on 2023-01-21 Edited on 2025-04-16 In .Net Word count in article: 53 Reading time ≈ 1 mins. 設定 appsettings.json 如下 12345678{ "Logging": { "LogLevel": { "Default": "Information", "Microsoft.AspNetCore": "Warning" } }} Read more »
Whistle 代理規則使用 Posted on 2023-01-20 Edited on 2025-04-16 In Whistle Word count in article: 252 Reading time ≈ 1 mins. 設定 Dns 代理 在 Rules 頁籤加入以下設定,設定 Domain 對應 Ip 位置 1example.com 192.168.0.1 Read more »
安裝 Whistle Posted on 2023-01-20 Edited on 2025-04-16 In Whistle Word count in article: 52 Reading time ≈ 1 mins. 使用 Node 安裝 Whistle 1npm i -g whistle Read more »
如何使用 Regex 群組 Posted on 2022-05-22 Edited on 2025-04-16 In Javascript Word count in article: 58 Reading time ≈ 1 mins. 使用 Regex 群組 群組方法用法如下 12345678// 建立規則var myRegexp = /(?<群組名稱>.*)Test/g;// 執行規則var match = myRegexp.exec('123Test');// 取得執行結果 output: 123console.log(match.groups.群組名稱); Read more »