我一直在搜索,并且找到了解决此问题的“解决方案”,但仍然无法正常工作。
场景:
我正在使用UI路由器构建Angular(1.2版)网站,并在本地主机上的Node服务器上运行它。我试图通过$ locationProvider并通过打开html5(true)使其具有“漂亮的” URL。单击该网站时,我的网站运行良好,但是当我尝试导航到相对链接路径或刷新链接路径时,页面会中断。我还打算在完成后将此Webapp部署到Heroku:
相对链接路径:
http://localhost:8000/locksmith-services
页面输出结果
Cannot GET /locksmith-services
我已采取的步骤:
1.)我在“index.html” 中,将基本URL设置为:
<base href="/"></base>
2.)在我的app.js文件(用于Angular)中,我将其编写如下:
// App Starts
angular
.module('app', [
'ui.router',
'ngAnimate',
'angular-carousel'
])
.config(['$urlRouterProvider', '$stateProvider', '$locationProvider', function($urlRouterProvider, $stateProvider, $locationProvider) {
$urlRouterProvider.otherwise("/");
$stateProvider
.state('home', {
url: '/',
templateUrl: 'pages/home.html',
controller: 'homeCtrl'
})
.state('services', {
url: '/locksmith-services',
templateUrl: 'pages/locksmith-services.html',
controller: 'servicesCtrl'
})
.state('locations', {
url: '/locksmith-locations',
templateUrl: 'pages/locksmith-locations.html'
})
.state('payment', {
url: '/locksmith-payment',
templateUrl: 'pages/locksmith-payment.html'
})
// use the HTML5 History API
$locationProvider.html5Mode(true);
}])
3.)在我的导航中,我的html编写为:
<div class="wrapper">
<a ui-sref="home">
<img src="images/logo.png" class="logo" alt="Austin Texas Locksmith" />
</a>
</div>
<nav class="row navigation">
<a class="mobile33" ui-sref="services" ui-sref-active="active" class="active">Services</a>
<a class="mobile33" ui-sref="locations" ui-sref-active="active">Locations</a>
<a class="mobile33" ui-sref="payment" ui-sref-active="active">Payment</a>
</nav>
4.)我的server.js文件(节点服务器)
var express = require('express');
var app = express();
app.use(express.static(__dirname + '/front'));
var port = process.env.PORT || 8000;
app.listen(port);
最好的解决方案是什么?在此先感谢您的帮助。
最佳答案
感谢@trehyu帮助我获得了这个答案。
就像他写的一样,我需要在server.js文件上进行一些设置,以将用户重定向到我的“index.html”文件。
因此,取决于您的文件结构...
之前(无效)
var express = require('express');
var app = express();
app.use(express.static(__dirname + '/front'));
var port = process.env.PORT || 8000;
app.listen(port);
之后(工作)
var express = require('express');
var app = express();
app.use('/js', express.static(__dirname + '/front/js'));
app.use('/build', express.static(__dirname + '/../build'));
app.use('/css', express.static(__dirname + '/front/css'));
app.use('/images', express.static(__dirname + '/front/images'));
app.use('/pages', express.static(__dirname + '/front/pages'));
app.all('/*', function(req, res, next) {
// Just send the index.html for other files to support HTML5Mode
res.sendFile('/front/index.html', { root: __dirname });
});
var port = process.env.PORT || 8000;
app.listen(port);
希望这对其他人有所帮助!
关于AngularJS:启用html5mode(true)时,相对链接路径断开,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26066691/