使用Express JS阻止来自客户端的不需要的请求
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Express JS阻止来自客户端的不需要的请求相关的知识,希望对你有一定的参考价值。
考虑Express路由器:
const express = require("express");
const router = express.Router();
const DUMMY_PLACES = [
id: "p1",
title: "Empire State Building",
description: "One of the most famous sky scrapers in the world!",
location:
lat: 40.7484474,
lng: -73.9871516
,
address: "20 W 34th St, New York, NY 10001",
creator: "u1"
];
// @ http://localhost:5000/api/places/user/u1
router.get("/user/:uid", (req, res, next) =>
const user_id = req.params.uid;
const place = DUMMY_PLACES.find(p =>
return p.creator === user_id;
);
return res.status(200).json(
place
);
);
module.exports = router;
和服务器:
const express = require("express");
const bodyParser = require("body-parser");
const app = express();
const placesRoutes = require("./routes/places-routes");
app.use("/api/places", placesRoutes);
const PORT = 5000;
app.listen(PORT, () =>
console.log(`Listening on port $PORT`);
);
当客户点击请求http://localhost:5000/api/places/user/u1
时,他们得到了虚拟对象...但是当点击请求时
http://localhost:5000/api/places/user
...它产生一个空对象。
如何返回类似NOT ALLOWED的内容而不是空对象?
答案
也许您可以检查是否存在user_id,如果没有,则发送错误响应?
router.get('/user/:uid', (req, res, next) =>
const user_id = req.params.uid
if (!user_id)
return res.status(400).json(
error: 'User ID required'
)
const place = DUMMY_PLACES.find((p) =>
return p.creator === user_id
)
return res.status(200).json(
place
)
)
另一答案
HTTP status codes生来就是要处理很多情况的。您的情况是客户端错误:在服务器上找不到请求的资源(错误404)。
在这种情况下,您的API可以通过以下方式更改:
router.get("/user/:uid", (req, res, next) =>
const user_id = req.params.uid;
const place = DUMMY_PLACES.find(p =>
return p.creator === user_id;
);
if (!place) // if the place does not exist
return res.status(404).json(
message: 'The requested resource has not been found in the server.'
);
return res.status(200).json(
place
);
);
以上是关于使用Express JS阻止来自客户端的不需要的请求的主要内容,如果未能解决你的问题,请参考以下文章
express,用于浏览器客户端和 node.js 客户端的 socket.io 服务器
使用来自另一个客户端的广播发射从节点服务器发送的数据无法被 c++ 套接字 io 客户端读取
是否可以在不使用 express 作为 vue js 的后端的情况下使用纯节点 js? [关闭]
为啥我的 Express.js 后端的 CORS 设置不起作用?