Http 的 Get 方法傳入 List 參數 Posted on 2023-01-21 Edited on 2024-11-09 In .Net Word count in article: 85 Reading time ≈ 1 mins. 建立類別 123456public class User { public string Name { get; set; } public int Age { get; set; }} 建立 HttpGet 方法 12345678910[ApiController][Route("[controller]")]public class UserController : ControllerBase{ [HttpGet] public List<User> Get([FromQuery] List<User> user) { return user; }} 組合 Request 的 Url 1https://example.com/User?user[0].Name='張三'&user[0].Age=10&user[1].Name='李四'&user[1].Age=20 📜 參考資料 Send an Array with an HTTP Get