IB坐席來電號碼屏蔽學習同事Angular的ng-view
在一個jsp頁面,有它本身的controller,可是
其中有用到模板!
angular.module裏要加上路由也就是ngRoute
而後配置源
myModule.config(['$routeProvider', function ($routeProvider) {
$routeProvider
.when('/test', {
templateUrl: 'html/public/customer/viewIBCustomer.html',
controller: 'viewIBCustomerCtrl'
});
}]);
從以上代碼看出controller已經寫了,因此在頁面裏不用寫了。
/test這個名字起有點差,讓別人很差找!!
原來的jsp頁面要加一個div裏面有ng-view指令
跳轉到viewIBCustomer.html後,不用引別的js!!
直接展現就ok!!
這裏在跳轉過來的時候他用的是$location.path('test');
這裏的test就是上面when裏的html