我在我的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();
})
在此先感謝
你在你的應用程序中使用路由嗎? – Jigar7521