本節咱們主要給你們介紹AngularJs如何調用Restful,實現數據的CRUD。前端
主要用到的技術:後端
後端:ASP.NET WebApi + SQLServer2008api
前端:AngularJs,Bootstrap3工具
主要用到的開發工具開發工具
後端:VisualStudio2013 + SQLServer2008測試
前端:WebStorm8spa
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請求的") }; } } }
測試Get請求http://localhost:31194/api/test3d
請輸入咱們的請求地址和請求方式code
查看返回結果orm
測試Post請求http://localhost:31194/api/test
請輸入咱們的請求地址和請求方式
查看返回結果
測試Put請求http://localhost:31194/api/test
請輸入咱們的請求地址和請求方式
查看返回結果
(未完待續)