2016-11-09 59 views
1

我在我的index.html中鏈接了所有的CSS和JS文件,子頁面進入了模板目錄,但是使用了$ window.location.href它只返回了純html頁面,沒有CSS樣式。

按鈕點擊頁面渲染罰款。 任何想法如何解決這個問題。

.controller('HomepageCtrl', function($scope, $window,$stateParams, $timeout, ionicMaterialInk, ionicMaterialMotion) { 
    // Set Header 
    $scope.got = function(){ 
    $window.location.href = '/tempelates/share.html'; 
    } 
    $scope.$parent.hideHeader(); 

}) 

在此先感謝

+0

你在你的應用程序中使用路由嗎? – Jigar7521

回答

2
$window.location.href 

會重定向到了應用程序,您必須使用$本地路由。

+0

我應該將它寫爲$ location.href還是$ location.path,因爲兩者都不起作用 – sam

+0

是否在'app.config()'中配置了'$ routeProvider'? –

+0

不,那該怎麼辦? – sam

相關問題