Step 1: Install Alpine.js
First, you have to install Alpine.js using NPM or Yarn but If you do prefer the easy road then let's just reference the CDN. At the time of this writing, the version is 3.5.0 so if you are reading it on the future do refer to the documentation.
<script defer src="https://unpkg.com/[email protected]/dist/cdn.min.js"></script>
Step 2: Define Alpine.js Data
Now you will have to define the Alpine.js data and it's as simple as calling the x-data. For this example, we'll be calling the Pokemon API so we can later on print some pokemon stats to the console.
<div x-data="{ pokemon: null }"></div>
https://pokeapi.co/api/v2/pokemon/{pokemon-name-here}
Step 3: Call the Ajax From Alpine.js
To call an ajax using the "Fetch API" you can define it from within the x-init attribute where it will be called when Alpine.js initializes. The pokemon we'll be calling is "Pikachu".
https://pokeapi.co/api/v2/pokemon/pikachu
function getPokemon() { fetch('https://pokeapi.co/api/v2/pokemon/pikachu') .then((response) => response.json()) .then((json) => this.pokemon = json); }
Step 4: Attach Fetch Function to Alpine.js
Now to attach the function you can specify your code within the x-data attribute.
<div x-data="{ pokemon: null, getPokemon() { fetch('https://pokeapi.co/api/v2/pokemon/pikachu') .then((response) => response.json()) .then((json) => this.pokemon = json); } }" x-init="getPokemon()"></div>
<div x-data="{ pokemon: null, getPokemon() { fetch('https://pokeapi.co/api/v2/pokemon/pikachu') .then((response) => response.json()) .then((json) => this.pokemon = json); } }" x-init="getPokemon()"> <p x-text="pokemon.abilities[0].ability.name"></p> <p x-text="pokemon.abilities[1].ability.name"></p> </div>
Leave a reply