002.AngularJs調用Restful實現CRUD

本節咱們主要給你們介紹AngularJs如何調用Restful,實現數據的CRUD。前端

主要用到的技術:後端

後端:ASP.NET WebApi + SQLServer2008api

前端:AngularJs,Bootstrap3工具

主要用到的開發工具開發工具

後端:VisualStudio2013 + SQLServer2008測試

前端:WebStorm8spa

 

1.建立後端項目AngularJs_WebApi

1.1創建空解決方案名稱AngularJs_WebApi

image

1.2 建立AngularJs_WebApi_Server服務端項目

image

 

1.3 選擇空的WebApi項目,並建立

image

image

1.4 新建控制器TestController類(用於測試)

image

image

image

 

1.5 編寫TestController.cs實現代碼

using System.Net.Http;
using System.Web.Http;

namespace AngularJs_WebApi_Server.Controllers
{
    public class TestController : ApiController
    {
        public HttpResponseMessage Get()
        {
            return new HttpResponseMessage()
            {
                Content = new StringContent("我是經過Get請求的")
            };
        }

        public HttpResponseMessage Post()
        {
            return new HttpResponseMessage()
            {
                Content = new StringContent("我是經過Post請求的")
            };
        }

        public HttpResponseMessage Put()
        {
            return new HttpResponseMessage()
            {
                Content = new StringContent("我是經過Put請求的")
            };
        }
    }
}

1.6 經過Chrome應用程序REST Console測試剛纔發佈的服務(若是沒有能夠到應用商店中去下載)

image

測試Get請求http://localhost:31194/api/test3d

請輸入咱們的請求地址和請求方式code

image

查看返回結果orm

image

測試Post請求http://localhost:31194/api/test

請輸入咱們的請求地址和請求方式

image

查看返回結果

image

測試Put請求http://localhost:31194/api/test

請輸入咱們的請求地址和請求方式

image

查看返回結果

image

 

(未完待續)

相關文章
相關標籤/搜索