Я начинаю настраивать вещи, используя flatiron в качестве набора инструментов для веб-приложения.
Я использую Director с app.plugins.http, и не могу понять, каксоздать маршрут «catchall» для статических файлов & 404s. Похоже, что .get("<RegEx>")
соответствует только первой позиции папки, поэтому, если <RegEx>
равно /.*
, оно будет соответствовать /foo
, но не /foo/bar
.
Вот мой код, как лучший пример:
в routes.js
:
var routes = {
/* home
* This is the main route, hit by queries to "/"
*/
"/" : {
get: function(){
getStatic("html/index.html",_.bind(function(err,content){
if(err) throw err;
renderContent(this,content);
},this));
}
},
/* static files
* Last rule, if no other routes are hit, it's either a static resource
* or a 404. Check for the file then return 404 if it doesn't exist.
*/
'/(.*)' : {
get : function(){
getStatic(this.req.url,_.bind(function(err,content){
if(!err){
renderContent(this,content);
} else {
this.res.writeHead(404);
// TODO: fancier 404 page (blank currently)
this.res.end();
}
},this))
}
}
}
и в моем главном файле приложения:
/* Define the routes this app will respond to. */
var routes = require('./lib/routes');
/* set up app to use the flatiron http plugin */
app.use(flatiron.plugins.http);
/* loop through routes and add ad-hoc routes for each one */
for(var r in routes){
var route = routes[r];
if(!routes.hasOwnProperty(r)) continue;
for(var method in route){
if(!route.hasOwnProperty(method)) continue;
app.router[method](r,route[method]);
}
}
/* Start the server */
app.listen(8080);
Я хотел бы иметь возможность хранить свои маршруты в отдельном модуле и импортировать их - мне совершенно неясно, будет ли лучше этот метод или использование директора и обычного http-сервера, но я попробовал оба пути без какой-либо удачи.
Вот что я получаю:
localhost:8080/
>> (content of index file - this works)
localhost:8080/foo
>> (blank page, 404 header)
localhost:8080/foo/bar
>> (no static file for this - I get a 404 header, but the body is now "undefined" - where is this coming from??)
localhost:8080/css/min.css
>> (this file should exist, but the route is never called. I do however still get a 404 header, and get the "undefined" body)
поэтому я предполагаю, что "неопределенное" тело является поведением по умолчанию для неопределенных маршрутов.
Есть ли способсоздать универсальный маршрут без добавления правил для каждой глубины?