Answer the question
In order to leave comments, you need to log in
How to use the result parsed from the site?
There is a code
const request = require('request');
const headers = {
'accept': '*/*'
};
const options = {
url: 'URL',
headers: headers
};
function callback(error, response, body) {
if (!error && response.statusCode == 200) {
const jsonArr = JSON.parse(body);
// console.log(jsonArr);
console.log(jsonArr.Revenue);
}
}
request(options, callback);
214970
Answer the question
In order to leave comments, you need to log in
The answer is in the output code of this number itself. Analyze which lines display the result, play around, and understand exactly where the answer is.
Telling you in this case is not worth it for your own good.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question