來源:http://docs.angularjs.org/api/ngRoute.$routeProviderhtml
有省略。angularjs
$routeProviderapi
ngRoute模塊中的服務promise
描述ide
用於配置路由函數
示例spa
配置與ngRoute的使用參見$routecode
依賴htm
須要安裝ngRoute模塊事件
方法
otherwise(params)
設置用於路由改變時,與任何其餘路由定義沒法匹配時使用的路由定義。
參數
參數名 | 類型 | 詳細說明 |
params | Object | 將賦值給$route.current的映射信息 |
返回
[Object]自身
when(path, route)
爲$route服務添加新的路由定義
參數
參數名 | 類型 | 詳細說明 |
path | string | (匹配$location.path的)路由地址。若是$location.path包含多餘的尾斜槓或少了一個,路由仍會匹配,$location.path將會更新,增減一個斜槓以匹配路由定義。
例如,形如/color/:color/largecode/:largecode*\/edit的路由,將會匹配/color/brown/largecode/code/with/slashs/edit,並提取出:
|
route | Object | 路由匹配時將賦值給$route.current的映射信息。 Object屬性:
|
返回
[Object]自身