服务01
- $scope
- $watch
- $apply
- $rootScope
- $timeout
- $interval
- $filter
服务 $http
- method
- url
- success
- error
jsonp实例
1 | $http({ |
$location
- absUrl()
- path(): //xx
- replace():不产生历史管理
- hash() // 03-demo.html#/#a
- search() // 参数 search({key:val})
- 03-demo.html#/?key=val
- url()
- host()
- port()
- protocol()
$anchorScroll 锚点跳转服务
需要配合 hash
缓存 $cacheFactory
var cache=$cacheFactory(‘myCache’)
- info() //{id:xx,size:0}
- put() // cache.put(‘name’,’hi’)
- get()
- remove()
- 配置capacity // 缓存长度 $cacheFactory(‘idNanme’,{capacity:2})
$log 打印信息
- log()
- info()
- warn()
- error()