Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Як встановити HTTP-метод для маршруту в Node.js?
app.route('/route', 'GET', handler)
app.get('/route', handler)
app.on('GET', '/route', handler)
app.method('GET', '/route', handler)
app.setMethod('GET', '/route', handler)
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!