标签:
本节我们主要给大家介绍AngularJs如何调用Restful,实现数据的CRUD。
主要用到的技术:
后端:ASP.NET WebApi + SQLServer2008
前端:AngularJs,Bootstrap3
主要用到的开发工具
后端:VisualStudio2013 + SQLServer2008
前端:WebStorm8
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测试刚才发布的服务(如果没有可以到应用商店中去下载)
测试Get请求 http://localhost:31194/api/test
请输入我们的请求地址和请求方式
查看返回结果
测试Post请求 http://localhost:31194/api/test
请输入我们的请求地址和请求方式
查看返回结果
测试Put请求 http://localhost:31194/api/test
请输入我们的请求地址和请求方式
查看返回结果
(未完待续)
AngularJs调用Restful实现CRUD - AngularJs
标签:
原文地址:http://www.cnblogs.com/branton-design/p/5909948.html