标签: javascript node.js string express colon
我看到了以下代码,但不了解dishId的工作方式?这是否意味着如果我们在' '内的字符串后面放一个冒号,它将用其中的值替换该字符串?
dishId
' '
const app = express(); app.get('/dishes/:dishId' , (req, res, next) => { res.end('Will send details of the dish: ' + req.params.dishId ); });