を拡張して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...
}
この質問の背後にある背景はこちらです。どんな助けにも感謝します。