Created
August 12, 2021 00:16
-
-
Save w3collective/ce395693217ded92f99f13ceea1e9187 to your computer and use it in GitHub Desktop.
Displaying API data in a HTML table with Alpine.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1" /> | |
<title>Alpine.js: Displaying API data in a HTML table</title> | |
<style> | |
[x-cloak] { | |
display: none !important; | |
} | |
td, | |
th { | |
border: 1px solid #ccc; | |
padding: 5px 15px 5px 5px; | |
text-align: left; | |
} | |
</style> | |
<script defer src="https://unpkg.com/[email protected]/dist/cdn.min.js"></script> | |
</head> | |
<body> | |
<div | |
x-cloak | |
x-data="{teams: [], 'isLoading': true}" | |
x-init="fetch('https://www.thesportsdb.com/api/v1/json/1/lookup_all_teams.php?id=4328') | |
.then(response => response.json()) | |
.then(response => { teams = response.teams; isLoading = false; console.log(response.teams);})" | |
> | |
<h1 x-show="isLoading">Loading...</h1> | |
<table x-show="!isLoading"> | |
<tr> | |
<th>Team</th> | |
<th>Founded</th> | |
<th>Stadium</th> | |
<th>Capacity</th> | |
</tr> | |
<template x-for="team in teams" :key="team.idTeam"> | |
<tr> | |
<td x-text="team.strTeam"></td> | |
<td x-text="team.intFormedYear"></td> | |
<td x-text="team.strStadium"></td> | |
<td x-text="team.intStadiumCapacity"></td> | |
</tr> | |
</template> | |
</table> | |
</div> | |
</body> | |
</html> |
Id like to display an image in column. The following text column works
td x-text=https://storage.googleapis.com/samplethumbs/tn_${image.Filename}
>
I haven't figured out how to display an image in a coulmn with alpine
<img class="responsive-img" src=https://storage.googleapis.com/samplethumbs/tn_${image.Filename}> TIA John tr tt timage lin /th th image /th /tr template x-for="image in images" :key="image.id" tr td x-text="https://storage.googleapis.com/samplethumbs/tn_${image.Filename}> <img class="responsive-img" /td td x-text="image.Filename"><img src=
https://storage.googleapis.com/samplethumbs/tn_${image.Filename}` /td
/tr
/template
<img x-bind:src="
https://storage.googleapis.com/samplethumbs/tn_${image.Filename}`">
`
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Source => https://w3collective.com/alpine-js-api-data-table/