1
新手FeathersJS用戶初始化此應用程序後,不能添加路由。我顯然錯過了一些關鍵的理解。FeathersJS:
我試圖創建使用MySQL模式簡單的REST API。我試圖遵循this issue thread中文檔引用的代碼結構。在我的初始app.use()
塊工作中定義的路線,但不包括在它之後定義的路線。這裏的部分代碼,休息in this gist
const app = feathers();
app.configure(configuration(path.join(__dirname, '..')));
app.use(compress())
.options('*', cors())
.use(cors())
.use(favicon(path.join(app.get('public'), 'favicon.ico')))
/* THIS ROUTE WORKS FINE */
.use('/', serveStatic(app.get('public')))
.use(bodyParser.json())
.use(bodyParser.urlencoded({
extended: true
}))
.configure(hooks())
.configure(rest())
.configure(socketio())
.configure(models)
.configure(services)
.configure(middleware);
const appModels = app.get('models');
const beerOptions = {
Model: appModels.beer,
paginate: {
default: 15,
max: 50
}
};
/* NEITHER OF THESE ROUTES WORK */
app.use('/beer', service(beerOptions));
// IF YOU DELETE THE DEFINITION ABOVE AND UNCOMMENT
// THIS NEXT LINE, THE ROOT URL GIVES A 404
// app.use('/', serveStatic(app.get('public')));
時npm start
荷蘭國際集團的應用程序,我沒有得到任何錯誤。但是,我的/beer
路由只有404s,就像在那裏定義的任何路由一樣。我已經通過指南尋找我的誤解來源。但我有點卡住了。
爲什麼會是這樣?它清楚地回答了OP的問題? – Daff