我对网络开发比较陌生。我正在使用节点(带快速)和角度JS。虽然解决方案可能很简单,但我无法确定为什么每个请求的文件(css / javascript / html)的内容都与index.html文件的内容一起返回。
Chrome检查员的以下屏幕截图说明了问题:
controller.js文件的内容显示的内容实际上是index.html文件的内容。
您可以在屏幕截图中看到索引文件中的相关内容。以下是节点服务器代码:
/**
* Module dependencies.
*/
var express = require('express'),
routes = require('./routes'),
api = require('./routes/api');
var app = module.exports = express();
// Configuration
app.configure(function() {
app.use(express.bodyParser());
app.use(express.methodOverride());
app.use(express.static(__dirname + '/public'));
app.use(app.router);
});
app.configure('development', function(){
app.use(express.errorHandler({ dumpExceptions: true, showStack: true }));
});
app.configure('production', function(){
app.use(express.errorHandler());
});
// Routes
app.get('/', routes.index);
app.get('/partials/:name', routes.partials);
// JSON API
app.get('/api/name', api.name);
// redirect all others to the index (HTML5 history)
app.get('*', routes.index);
// Start server
app.listen(3000, function(){
console.log("Express server listening on port %d in %s mode", this.address().port, app.settings.env);
});
routes.js文件(在路线目录中):
/*
* GET home page.
*/
//get correct directory path
var filePath = __dirname.replace('routes', 'views/')
exports.index = function(req, res) {
res.sendfile(filePath + 'index.html');
};
exports.partials = function (req, res) {
var name = req.params.name;
res.sendfile(filePath + 'partials/' + name + '.html');
};
似乎每个资源请求都返回索引(包括图像文件)的内容。任何想法或建议将不胜感激。
答案 0 :(得分:1)
这是你的问题:
// redirect all others to the index (HTML5 history)
app.get('*', routes.index);
您希望在其他app.get()
之前移动它。基本上你已经告诉服务器在设置了一堆其他路由之后用index.html
响应每个请求。