express 에서 get 요청 과 post 요청 가 져 오기
6758 단어 express
// npm install body-parser
const express = require('express');
const bodyparser = require('body-parser');
//
const app = express();
//
//extended:false querystring
//extended:true qs
app.use(bodyparser.urlencoded({
extended:false}));
app.post('/add',(req,res)=>{
res.send(req.body)
})
app.listen(3000);
console.log(' ');
get 요청
// express
const express = require('express');
const app = express();
app.get('/index',(req,res)=>{
// get req.query
res.send(req.query)
})
app.listen(3000)
console.log(' ');
인자 가 있 는 get 요청
const express = require('express');
const bodyParser = require('body-parser')
const app = express();
// get
app.get('/index/:id',(req,res)=>{
res.send(req.params)
})
app.listen(3000);
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
express를 사용하여 AWS S3 이미지에 액세스하기 위해 미리 서명된 URL을 생성하는 방법은 무엇입니까?이를 달성하는 방법 중 하나는 미리 서명된 URL을 사용하는 것입니다. However, the object owner can optionally share objects with others by creating a...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.