“Pobieraj memy z Redit z JavaScript” Kod odpowiedzi

Pobieraj memy z Redit z JavaScript

axios
    .get(mainUrl)
    .then((response) => {
        dealWithData(response.data);
    })
    .catch((err) => {
        console.log(err);
    });
Selfish Snake

Pobieraj memy z Redit z JavaScript

<img alt="Post image" class="_2_tDEnGMLxpM6uOa2kaDB3 ImageBox-image media-element _1XWObl-3b9tPy64oaG6fax" src="https://preview.redd.it/g64fe51e6z851.jpg?width=640&crop=smart&auto=webp&s=c5917f6…" style="max-height: 512px;">
Selfish Snake

Pobieraj memy z Redit z JavaScript

const randNo = (limit) => {
    const thatNo = Math.floor(Math.random() * limit);
    return thatNo;
};
Selfish Snake

Pobieraj memy z Redit z JavaScript

const dealWithData = (html) => {
    const $ = cheerio.load(html);
    const urlMeme = $("._2_tDEnGMLxpM6uOa2kaDB3.ImageBox-image.media-element._1XWObl-3b9tPy64oaG6fax");
    const indexValue = 0;
    console.log(`Source is:\n${urlMeme[indexValue].attribs.src}`);
};
Selfish Snake

Pobieraj memy z Redit z JavaScript

const indexValue = randNo(urlMeme.length);
Selfish Snake

Odpowiedzi podobne do “Pobieraj memy z Redit z JavaScript”

Pytania podobne do “Pobieraj memy z Redit z JavaScript”

Więcej pokrewnych odpowiedzi na “Pobieraj memy z Redit z JavaScript” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu