问题遇到的现象和发生背景
后台
@PostMapping
public Map<String, Integer> add(@RequestBody Hero hero) {
Hero hero1 = this.heroService.insert(hero);
Map<String,Integer> map = new HashMap<>();
if(hero1 != null){
map.put("code", 200);
}else{
map.put("code", 401);
}
return map;
}
前台
saveHero(){
axios({
method:this.requestType,//post
url:'hero',
data:this.hero
}).then(res=>{
if(res.data.code="200"){
debugger
alert("保存成功");
//关闭模态
$("#myModal").modal('hide')
// 刷新页面
this.listHero()
}else{
alert("保存失败");
}
})
},
运行结果及报错内容
报错 400