gpt4 book ai didi

node.js - 错误 : Nock: No match for request

转载 作者:搜寻专家 更新时间:2023-10-31 22:36:44 24 4
gpt4 key购买 nike

我收到以下错误

{ error: 
{ Error: Nock: No match for request {
"method": "GET",
"url": "http://localhost:3000/admin/orders/30075889/transactions.json",
"headers": {
"content-type": "application/json",
"host": "localhost:3000"
}
} Got instead {
"method": "GET",
"url": "http://localhost:3000/admin/orders/30075889/transactions.json",
"headers": {
"content-type": "application/json",
"host": "localhost:3000"
}
}

url 是预期的,不知道哪里出了问题,任何指针?

最佳答案

使用 .log(console.log) 查看确切的错误消息。

例如:

nock('https://test.org/sample')
.persist()
.log(console.log)
.get('/test')
.query({})
.reply(200, response);

当你使用它并运行测试时,你会在控制台中看到类似这样的东西

matching https://test.org/sample/test to GET https://test.org/sample/test with query({}): **true/false**.

如果是真的,你的请求应该是好的。但如果它说 false,请检查两个请求并确保它们匹配。

关于node.js - 错误 : Nock: No match for request,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48674675/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com