我正在创建一个https请求,以在登录页面上获取一些隐藏的变量。我正在为此使用node.js包请求。调用请求后,我正在使用回调函数返回到我的解析函数。
class h {
constructor(username, password){
this.username = username;
this.password = password;
this.secret12 = '';
}
init() {
//Loading H without cookie
request({
uri: "http://example.com",
method: "GET",
jar: jar,
followRedirect: true,
maxRedirects: 10,
timeout: 10000,
//Need to fake useragent, otherwise server will close connection without response.
headers: {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36'}
},
this.getHiddenInputs());
}
getHiddenInputs(error, response, body) {
if (!error && response.statusCode === 200) {
//Parsing body of request, to get hidden inputs required to mock legit authentication.
const dom = new JSDOM(body);
this.secret12 = (dom.window.document.querySelector('input[value][type="hidden"][name="secret12"]').value);
}
else {
console.log(error);
console.log(response.statusCode)
}
};
}
const helper = new h("Username", "Password");
helper.init();
console.log(helper);
因此在init()内部调用请求之后。我正在使用回调函数来运行代码,以在完成请求后找到“隐藏的输入”。 I'm following the example from here.
我想念什么吗?
答案 0 :(得分:1)
您正在执行this.getHiddenInputs()
而不是将其作为回调传递给请求,因此没有为请求调用提供实际的回调。
您可以像这样this.getHiddenInputs.bind(this)
通过它,或者我更喜欢这样的(error, response, body) => this.getHiddenInputs(error, response, body)