1. 程式人生 > >ASP.NET Core 2.2 基礎知識(十四) WebAPI Action返回型別(未完待續)

ASP.NET Core 2.2 基礎知識(十四) WebAPI Action返回型別(未完待續)

要啥自行車,直接看手錶

        //返回基元型別
        public string Get()
        {
            return "hello world";
        }

 

        //返回複雜型別
        public Person Get()
        {
            return new Person {Id = 1, Name = "refuge"};
        }

 

        //控制器需要繼承  Controller 類
        public
IActionResult Get() { return Ok("hello world"); }

 

 

        //控制器需要繼承  Controller 類
        public IActionResult Get()
        {
            return BadRequest("hello world");
        }

 

 

        //控制器需要繼承  Controller 類
        public
IActionResult Get() { return NotFound("什麼也沒有"); }