我已經開始使用「ngNewRouter
」。在我的應用程序中,使用javascript我需要在多個組件之間切換。我已經使用$location.path(path);
,但它不一致。以下是詳細信息。
//定義路線
$router.config([
{path: "/", redirectTo: "userauthentication"}, // The default URL is redirected to userauthentication component.
{path: "/userauthentication", component: "userauthentication"},
{path: "/adminview", component: "adminview"},
{path: "/clubonboarding/:clubid", component: "clubonboarding"},
{path: "/membermanagement", component: "membermanagement"}
]);
$locationProvider.html5Mode(true);
守則,正在努力:
$location.path("adminview");
守則,不工作:
$location.path("userauthentication");
它作爲它工作在幾個地方讓我感到吃驚和不適用於其他人。我在這裏錯過了什麼。
請指教。
「不工作」是什麼意思?你有錯誤嗎?你有錯誤的頁面?觸發此代碼的事件是否永遠不會觸發?目前尚不清楚問題出在哪裏。 – Claies
是的,事件被觸發,但視圖不會改變。 – joy