这是我的前端AngularJS路由:
$urlRouterProvider.otherwise('/');
$locationProvider.html5Mode(true).hashPrefix('!');
$stateProvider
.state('main', {
url: '/',
templateUrl: '/views/main.html',
controller: 'MainCtrl'
})
.state('review', {
url: '/review',
templateUrl: '/views/review.html',
controller: 'NewReviewCtrl'
})
.state('model', {
url: '/:make/:model',
templateUrl: '/views/model.html',
controller: 'ModelPageCtrl'
});
这是我的服务器端路由(node.js):
//...some routes
app.use('/*', function(req, res){
res.sendFile(config.rootPath + '/public/index.html');
});
使用/review
路线,一切正常,但不适用于/:make/:model
:
HTML:
<a href="" ui-sref="model({make: 'lenovo', model: 'thinkpad-t430'})">See more details...</a>
如果我通过该链接转到此页面,一切正常,但如果我刷新或直接转到localhost:3030/lenovo/thinkpad-t430
我会收到此错误:
Uncaught Error: [$injector:modulerr] Failed to instantiate module app to:
Error: [$injector:nomod] Module 'app' is not available! You either misspelled the module name or forgot to load it. If registering a module ensure that you specify the dependencies as the second argument.
可能是因为html5mode
。我建议它不使用此URL,因为它是一个2级URL。
我该如何解决这个问题?
编辑:Express.js config:
app.set('view engine', 'ejs');
app.use(function (req, res, next) {
res.header('Access-Control-Allow-Origin', '*');
res.header('Access-Control-Allow-Methods', 'GET,PUT,POST,DELETE');
res.header('Access-Control-Allow-Headers', 'Content-Type, Authorization');
next();
});
app.use(bodyParser());
app.use(session({secret:"some_secret"}));
app.use(passport.initialize());
app.use(passport.session());
app.use(express.static(config.rootPath+"/public"));
答案 0 :(得分:1)
I created working plunker,它使用与上述相同的UI-Router设置。一切正常。所以,我们现在应该知道,客户端应该正确设置。
主要和唯一的区别是,更明确的设置,这允许我们在头部省略<base href="/" />
$locationProvider
.html5Mode(
{
enabled: true,
requireBase: false,
})
或者我们可以使用plunker
的<base>
元素(检查index.html <head>
)int
似乎问题出在服务器端,请检查两次: