Skip to content

magento man

why do I get these numbers rendered in the front end? when I use ajax to do a get to an api

my pokemon-component.js define([ “jquery” ], function ($) { “use strict”; return { getPokemonResults: function () { /** * Return result from pokeapi * @return {Deferred} */ return $.ajax({ url: “https://pokeapi.co/api/v2/pokemon/”, type: “GET”, global: true, contentType: “application/json”, Data:{ ‘pokeData’:[] } });… Read More »why do I get these numbers rendered in the front end? when I use ajax to do a get to an api