Node js / request/ Get

the same

Активный
Автор темы
176
23
Как "заставить" код дождаться полной загрузки страницы сайта , чтобы затем получить полный html страницы?

JavaScript:
 request({
        url: "типо ссылочка",
        method: "GET",
    }, function (error, response, body){
        console.log(body ) // место полного кода html я получаю  на подобии "Подождите , страница грузится"
    });
 

Quasper

Известный
835
354
Код:
npm install node-fetch@2.7.0
JavaScript:
const fetch = require('node-fetch');
async function request(url){
    var options = {
        method: "GET",
        headers: {
            "Accept": "*/*"
        }
    }
    try{
        var response = await fetch(url, options)
        var data = await response.text()
        return data
    } catch(err){
        console.log(err)
    }
}
request("https:/google.com").then(res => console.log(res))