这是我的代码,在 wpt.runtest 函数中,我正在点击一些 url 并获取 url 作为响应,现在我将在我的请求函数中使用这个 url,但我需要等待一段时间,因为数据可用需要一些时间将在请求模块中使用的 url。
wpt.runTest('http://some url ',function(err, data) {
//console.log("hello -->",err || data);
data_url = data.data.summaryCSV;
console.log(data_url);
console.log('-----------');
console.log(data_url);
console.log('-----------');
request({uri:data_url,method:'GET'}, function (error, response,body) {
console.log('----@@@@@@----');
console.log(response.headers);
console.log('----@@@@@@----');
//console.log(response);
if (error) {
console.log('got an error' + error);
}
//console.log(response);
//console.log(body);
var data = body;
console.log('here is the body' + body);
我想要的是,在我的请求函数执行之前应该有一个时间间隔或暂停,我怎么能做到这一点