一:get形式传参 1、传统url传参
fetch("http://localhost:3000/books?id=123", {
method
: "get",
})
app
.get('/books', (req
, res
) => {
res
.end('传统url传递参数' + req
.query
.id
)
})
2、Restful形式传参:
fetch("http://localhost:3000/books/123", {
method
: "get",
})
app
.get('/books/:id', (req
, res
) => {
res
.end('Restful形式的url传递参数' + req
.params
.id
)
})
二:delete形式传参(跟get是类似的): 三:post形式传参 1、传递字符串形式: 四:总结 如果是在参数里面传参的话,使用req.params获取,如果是在body里面传递的参数,就使用req.body 获取
转载请注明原文地址:https://blackberry.8miu.com/read-34607.html