(三)使用路由和$location切换视图app.js:angular.module('shop',['ngRoute','ngResource','shop.controllers','shop.services','shop.filter']).config(['$routeProvider',...
分类:
其他好文 时间:
2014-07-30 20:32:24
阅读次数:
226
原api出处:https://docs.angularjs.org/api/ngRoute/service/$routeParams$routeParams 可以获取当前路径参数.需要ngroute模块被安装。路径参数是$location.search()和$location.path()的组合. ...
$route-$routeProvider服务-依赖ngRoute模块$route能够在路径发生改变的时候,渲染不同的视图,调用不同的控制器.它监测了$location.url(),然后根据路径来匹配相应的路由,路由的定义方法详见$routeProvider的API.$route通常和$routeP...
1、 Module使用方法var APP =angular.module('fontApp',['ngResource', 'ngRoute', 'ngSanitize']);APP为定义的别名,之后的调用都应尽量使用该别名'fontApp' ng-app="fontApp"新版本angular中r...
分类:
Web程序 时间:
2014-06-20 14:07:15
阅读次数:
257