我需要一个等价于可以在中间件中使用的简单 node.js 中的 express.js 代码。我需要根据 url 进行一些检查,并希望在自定义中间件中进行。
app.get "/api/users/:username", (req,res) ->
req.params.username
到目前为止,我有以下代码,
app.use (req,res,next)->
if url.parse(req.url,true).pathname is '/api/users/:username' #this wont be true as in the link there will be a actual username not ":username"
#my custom check that I want to apply