请教各位大神,问题描述有点复杂,请容我慢慢道来:
项目的结构:
我要实现html页面组合,所以用了AngularJS路由:
主页main.html的body:
<body ng-app="TrialApp" ng-controller="MainController">
<!--头部 -->
<header></header>
</body>
app2.js:
app.directive("header",function(){
return{
restrict: 'EAC',
transclude: true,
templateUrl:'htmls/pa/head.html'
}
});
我先通过ModelAndView访问到了main.html,
@RequestMapping(value="/display")
public ModelAndView toExitPage(HttpServletRequest request,
HttpServletResponse response)throws Exception{
Map<String, Object> model = new HashMap<String, Object>();
return new ModelAndView("nestedViews/main",model);
}
但是 templateUrl:'htmls/pa/head.html'
我试了好多种写法一直无法访问到,不知道该怎么写了。
请教各位大神,该如何解决?