ASP.NET Web API實踐系列06, 在ASP.NET MVC 4 基礎上增加使用ASP.NET WEB API

來源:互聯網
上載者:User

標籤:

本篇嘗試在現有的ASP.NET MVC 4 項目上增加使用ASP.NET Web API。


建立項目,選擇"ASP.NET MVC 4 Web應用程式"。

 

選擇"基本"項目模版。

 

在Controllers檔案夾下添加一個名稱為"TestController"的空API控制器。

 

在引用檔案夾中多了以下程式集:
System.Web.Http
System.Web.Http.WebHost
System.Net.Http
System.Net.Http.Formatting
......

 

在App_Start檔案夾中多了WebApiConfig靜態類:

 

    public static class WebApiConfig
    {
        public static void Register(HttpConfiguration config)
        {
            config.Routes.MapHttpRoute(
                name: "DefaultApi",
                routeTemplate: "api/{controller}/{id}",
                defaults: new { id = RouteParameter.Optional }
            );
        }
    }

 

修改TestController內容如下:

 

    public class TestController : ApiController
    {
        public IEnumerable<string> Get()
        {
            return new string[] {"value1","value2"};
        }
        public string Get(int id)
        {
            return "value";
        }
    }

 

在瀏覽器中輸入:http://localhost:3928/api/test

 

在瀏覽器中輸入:http://localhost:3928/api/test/5

 

在Controllers檔案夾下添加一個名稱為"HomeController"的空MVC控制器。

 

    public class HomeController : Controller
    {
        public ActionResult Index()
        {
            return View();
        }
    } 

 

添加Home/Index.cshtml視圖,修改如下:

 

@{
    ViewBag.Title = "Index";
    Layout = "~/Views/Shared/_Layout.cshtml";
}
<h2>Index</h2>
@section scripts
{
    <script type="text/javascript">
        $.get("http://localhost:3928/api/test", function (data) {
            alert(data);
        });
    </script>
}

 

可見,通過在Controllers添加空API控制器,預設會添加ASP.NET Web API相關組件以及設定檔。

 

 

ASP.NET Web API實踐系列06, 在ASP.NET MVC 4 基礎上增加使用ASP.NET WEB API

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.