我有一個angular.js應用程序,其基本設置如下:我的index.html
呈現靜態的東西像Top/Sidebar。裏面我有<div ng-view></div>
顯示部分HTML文件例如像我home.html
重新加載角度應用後沒有index.html
我登錄後進入我的應用程序index.html
與它的控制器MainCtrl
負載藏漢作爲我home.html
與根據HomeCtrl
。所以一切都應該如此。
我實施了一個修復程序(以便重新加載不會「忘記」用戶,我不會註銷 - 我基於http://www.sitepoint.com/implementing-authentication-angular-applications/的示例)我嘗試重新加載我的頁面。但現在只有我的home.html
加載。
注:我編輯我發現下面
這是合理的,這是我app.js
的一部分:
$routeProvider.when('/', {
templateUrl: 'views/home.html',
controller: 'HomeCtrl',
resolve: {
auth: function ($q, authenticationSvc) {
var userInfo = authenticationSvc.getUserInfo();
if (userInfo) {
return $q.when(userInfo);
} else {
return $q.reject({ authenticated: false });
}
}
}
})
.when('/login', {
templateUrl: 'views/login.html',
controller: 'LoginCtrl',
login: true
})
所以,很顯然,當我加載/
應用程序只顯示我的home.html
。但是我怎樣才能實現,當我登錄後正常進入頁面時,我已經擁有了什麼?
我的主要問題似乎是目前對我來說,我不太清楚如何以及爲什麼index.html
加載罰款當我登錄下面是我在LoginCtrl
做簽到過程完成後:
$location.path("/");
我在網上搜索了一些關於這個主題的詳細解釋,但不幸的是我沒有找到有用的東西。有人可以向我解釋爲什麼這首先起作用,以及我如何使它可以用於頁面重新加載?謝謝!
編輯我在這裏讀(https://github.com/angular-ui/ui-router/wiki/Frequently-Asked-Questions#how-to-configure-your-server-to-work-with-html5mode),我必須改變我的快遞配置。我想:
app.all('/*', function(req, res, next) {
res.sendfile('public/index.html', { root: __dirname });
});
我用$locationProvider.html5Mode(true);
但是當我現在登錄我的頁面刷新infintly,直至崩潰。
編輯2:好吧,閱讀了很多關於html5mode和如何使用它表達我相當肯定,我的錯誤是在後端,而不是在前端。
這裏是我的server.js
(快遞配置)的部分
app.use(require('less-middleware')(path.join(__dirname, 'public')));
app.use(express.static(__dirname + '/public'));
app.set('view engine', 'html');
app.set('views', __dirname + '/public/views/');
require('./routes')(app); // contains my other routes
app.get('/', function(req, res) {
res.render('index');
});
app.get('/views/:name', function (req, res) {
var name = req.params.name;
res.render('views/' + name);
});
app.get('*', function(req, res) {
res.redirect('/');
});
我的文件夾結構:
/server.js
/routes
/public/app.js
/public/index.html
/public/views/home.html
/public/controllers/xxxCtrl.js
我讀過關於計算器和其他網站的許多職位,基本上都說
app.get('*', function(req, res) {
res.redirect('/');
});
應該足以讓這個工作,但對我來說似乎並沒有工作。
EDIT3: 簡要總結就是我現在的問題是:
當我重新加載頁面只有部分HTML象例如正在加載home.html
。不是整個頁面index.html
。下面是我的corrent代碼的快速摘要:
app.js
(角配置)
我已經配置:
$locationProvider.html5Mode(true);
// I tried my app without html5mode, but then everything breaks - but I need the html5mode anyway
$routeProvider.when('/', {
templateUrl: 'views/home.html',
controller: 'HomeCtrl',
resolve: {
auth: function ($q, authenticationSvc) {
var userInfo = authenticationSvc.getUserInfo();
if (userInfo) { return $q.when(userInfo); }
else { return $q.reject({ authenticated: false });}
}
}
})
我authenticationSvc
:
.factory("authenticationSvc", ["$http", "$q", "$route", "$window", "$location", function ($http, $q, $route, $window, $location) {
// login, logout
function init() {
console.log("init");
if ($window.sessionStorage["userInfo"]) {
userInfo = JSON.parse($window.sessionStorage["userInfo"]);
}
}
init();
,並在服務器端,server.js
:
app.get('/:name', function (req, res) {
var name = req.params.name;
res.sendFile('views/' + name);
// res.sendFile(__dirname + '/public/index.html'); // uncommented, since it didn't work
});
require('./routes')(app);
// this is my last route:
app.get('*', function (req, res) {
res.redirect('/#' + req.originalUrl);
});
從我的理解這個「應該「足夠的配置,以表達和角度一起工作。
經過如此多的編輯,你能解釋你目前面臨的問題嗎? – Anubhav
對'.htaccess'文件有什麼想法? – falsarella
我沒有.htaccess文件,我使用nodejs/express和前端端angular.js – Markus