我正在尝试通过向 MongoDB 云 Atlas DB 服务器发出 POST 请求来测试我的 REST API。我知道 Postman 可用,但我想使用不同的东西,比如 Httpie。我已经检查了这个问题,但我仍然卡住了。 如何使用 HTTPie 发送 POST 请求?
我试图得到text='john smith'
当我使用
`http -f POST :5000/api/posts text='john smith'`
我得到这个回应。
`HTTP/1.1 201 Created
Access-Control-Allow-Origin: *
Connection: keep-alive
Content-Length: 0
Date: Tue, 19 Feb 2019 20:33:36 GMT
X-Powered-By: Express`
但是当我使用...
http -f GET :5000/api/posts
我回...
`[
{
"_id": "5c6c6820c2f6eb15ea9e8e08",
"createdAt": "2019-02-19T20:33:36.468Z",
"text": null
}
]`
这是我的帖子的 Nodejs API
router.post('/', async(req, res) => {
const posts = await loadPostCollection();
await posts.insertOne({
text: req.body.text,
createdAt: new Date()
});
res.status(201).send();
});