Spring Boot + AngularJS 前端AngularJS发送get,post请求实现跨域请求

本文详细介绍了如何使用SpringBoot后端配合AngularJS前端实现跨域请求,包括配置SpringBoot服务允许跨域、定义RESTful API,以及AngularJS前端发送GET和POST请求的具体方法。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Spring Boot + AngularJS 前端AngularJS发送get,post请求实现跨域请求

后端SpringBoot服务设置
新建类CorsConfiguration
@Configuration
public class CorsConfiguration extends WebMvcConfigurerAdapter {
@Override
public void addCorsMappings(CorsRegistry registry) {
System.out.println(“CorsConfiguration…”);
registry.addMapping("/") //允许跨域访问的链接 "/" 表示允许所有链接
.allowedMethods(""); //允许的http方法(GET,PUT,POST,DELETE…),"“表示允许所有方法
}
}
controller层
/**
* 返回全部列表
* @return
/
@RequestMapping("/findAll")
public List findAll(){
return informService.findAll();
}
/
*
* 增加
* @param inform
* @return
*/
@RequestMapping(”/add")
public Result add(@RequestBody Inform inform){

	try {
		informService.add(inform);
		return new Result(true, "增加成功");
	} catch (Exception e) {
		e.printStackTrace();
		return new Result(false, "增加失败");
	}
}

前端AngularJS
//读取列表数据绑定到表单中
this.findAll=function(){
// return $http.jsonp(‘http://localhost:8080/inform/findAll’);
return $http.get(‘http://localhost:8080/inform/findAll’);
}

//增加
this.add=function(entity){
return $http.post(‘http://localhost:8080/inform/add’,entity,{
headers : {‘Content-Type’:‘application/json’}
});
}

PS:在发送post请求的时候一定要设置Headers (headers : {‘Content-Type’:‘application/json’})为application/json。

新人路过,不喜勿喷,欢迎提出宝贵意见。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值