问题是from
作为 ISO 时间戳的参数,并且每个 API 调用都会发生变化。
模拟请求:
nock('http://example.api.com')
.persist()
.filteringPath(/from=[^&]*/g, 'module=tennis', 'languageCode=2')
.get('/svc/Utility.svc/json/GetAPICallRefresh_Module?module=tennis&languageCode=2')
.reply(200, () => {
return 'Mock response!'
});
不工作:Error: Nock: No match for request
你能帮忙吗?