我可以用 Frisby GET 很好,但我似乎不能用它 POST。我使用 Postman 来确保 POST 有效,但它总是返回 Frisby 错误。(该错误没有帮助...... api 只为所有内容发送 404 错误。)这是我正在使用的代码:
.frisby.create('test post')
.post('http://localhost/api', {
"data": {
"name": "Jackie L Smith",
"birthdate": "2007-08-14",
"relationship": "child",
"boolVar": false
}
}, {json: true}, {headers: { 'Content-Type': 'application/json' }})
.expectStatus(204)
.toss();
作为记录,由于某种原因,api的成功代码是204。有人可以告诉我为什么它不发布吗?