我想扩展routeProvider
并实现其他参数(例如templateUrl
)。然后每次触发任何路由时,我都想调用一个函数,其范围来自routeProvider
的附加参数。
$routeProvider
.when("/Index",
{
templateUrl:"./Views/index.html",
controller:"IndexCtrl",
myParam: "./Content/Text/file.json"
})
.always(function (myParam)
{
do something for any view with myParam parameter...
}
这个问题背后的背景是here。我将不胜感激。