IDEA编写spingMVC代码,vue前端代码,实现前后端分离
如何跨域访问是一大难题,前端请求http一个网址,这个网址在idea后端中已经编写为特定的动作(控制器Controller)
import VueResource from 'vue-resource'
Vue.use(VueResource)
还有个问题,注意在后面加入,保证json数据从前端输入传到后端去
Vue.http.options.emulateJSON = true
this.$http.post('http://127.0.0.1:8080/......',data).then((res)=>
其中…是你在后端写的返回json数据的控制器
(返回不能为视图名,所以要用ResponseBody)
com.fasterxml.jackson.core
jackson-databind
2.8.7
org.apache.tomcat
tomcat-catalina
7.0.50
CorsFilter
org.apache.catalina.filters.CorsFilter
cors.allowed.origins
*
cors.allowed.methods
GET,POST,HEAD,OPTIONS,PUT
cors.allowed.headers
Content-Type,X-Requested-With,accept,Origin,Access-Control-Request-Method,Access-Control-Request-Headers
cors.exposed.headers
Access-Control-Allow-Origin,Access-Control-Allow-Credentials
cors.preflight.maxage
10
CorsFilter
/*
@RequestMapping("/llogin")
@ResponseBody
public int llogin(
@RequestParam(value = "name",required = false)String name,
@RequestParam(value = "pw",required = false)String pw,
Model model){
Xy xy=new Xy();
xy.setName(name);
xy.setPw(pw);
System.out.println(("ok"));
int nowid=xyService.ifCorrect(xy);
System.out.println(nowid);
if(nowid>0) {//存在则进入主界面
xy.setXid(nowid);
model.addAttribute(
"nowinxy",xy);
} else {
model.addAttribute("error","登录失败");
}
return nowid;
}
应该还有更多种的写法,我这边再继续探索!!!
这玩意儿真的搞了我好久,刚开始一头雾水,一直纠结与vue是什么鬼,我真受不了了,后来了解到了跨域这个神奇的词,发现了一个tomcat的妙处,自己也突然醒悟过来,既然访问同一个http网址,那么上面传递的信息就会是一致的,那这样只要能够跨域问题就迎刃而解了,所以终于在浏览器控制台里看到后端传来的数据!!!