AngularJS扩展routeprovider参数并为任何路由调用函数

时间:2013-09-17 14:29:29

标签: javascript angularjs

我想扩展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。我将不胜感激。

0 个答案:

没有答案