Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
カスタム ルートを作成するにはどうすればよいですか? (データベース内のユーザー数に関係なく) 5 人のユーザーを返すルートを書きたいのですが、利用可能な短縮形ではうまくいきません。
ドキュメントを見ましたが、まだ混乱しています。
カスタム ルートを作成するには、関数を 2 番目の引数としてルート ハンドラに渡すだけです。
this.get('/users', function(db, request) { return db.users.filter(i => (i < 5)); });