赞
踩
最近更改Node接口时遇到了一些问题, 比如前端以何种方式传参, 后端用何种方式接收等等…
今天花了一小段事件测试了一下, 整理一下结果吧.
前端传params.
前端:
axios({
method: "get",
url: "http://localhost:3000/getArticleById",
params: {
article_id: 8,
},
}).then((res) => {
console.log(res);
});
后端:
app.post('/getArticleById', (req, res, next) => {
api.getArticleById(req, res, next);
})
getArticleById(req, res, next) {
console.log("body:" + req.body.article_id)
console.log("params:" + req.params.article_id);
console.log("query:" + req.query.article_id);
return;
},
后端输出:
前端传data.
前端:
axios({ method: "post", url: "http://localhost:3000/getArticleById", data: { article_id: 8, }, }).then((res) => { console.log(res); }); /* 等同于 axios.post("http://localhost:3000/getArticleById", { article_id: 8 }).then() */
后端:
app.post('/getArticleById', (req, res, next) => { //文章页文章请求
api.getArticleById(req, res, next);
})
getArticleById(req, res, next) {
console.log("body:" + req.body.article_id)
console.log("params:" + req.params.article_id);
console.log("query:" + req.query.article_id);
return;
},
后端输出:
前端传params.
前端:
axios({
method: "post",
url: "http://localhost:3000/getArticleById",
params: {
article_id: 8,
},
}).then((res) => {
console.log(res);
});
后端:
app.post('/getArticleById', (req, res, next) => { //文章页文章请求
api.getArticleById(req, res, next);
})
getArticleById(req, res, next) {
console.log("body:" + req.body.article_id)
console.log("params:" + req.params.article_id);
console.log("query:" + req.query.article_id);
return;
},
后端输出:
这个方法来自于一位大佬, 传送门: post像get一样使用params传参
前端:
axios({ method: 'post', url: "http://localhost:3000/getArticleById", params: { article_id: 8 } }).then((res) => { console.log(res); }) /* 等同于 axios .post("http://localhost:3000/getArticleById", null, { params: { article_id: 8 }, }) .then((res) => { console.log(res); }); */
后端:
app.post('/getArticleById', (req, res, next) => { //文章页文章请求
api.getArticleById(req, res, next);
})
getArticleById(req, res, next) {
console.log("body:" + req.body.article_id)
console.log("params:" + req.params.article_id);
console.log("query:" + req.query.article_id);
return;
},
后端输出:
复习一波, 以后遇到别的需求再回来补全…
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。