modified code
This commit is contained in:
10
index.html
10
index.html
@@ -16,16 +16,18 @@
|
||||
<script type="javascript" src="./onzer.riot"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
async function fetch_data(){
|
||||
function fetch_data(){
|
||||
return fetch("https://dwarves.iut-fbleau.fr/~fauvet/api/albums").then(response => {
|
||||
return response.json();
|
||||
} )
|
||||
}
|
||||
|
||||
async function wait_data(){
|
||||
return await this.fetch_data()
|
||||
}
|
||||
|
||||
riot.compile().then(() => {
|
||||
riot.mount('onzer', {
|
||||
items : await fetch_data()
|
||||
}
|
||||
riot.mount('onzer', {items: wait_data()}
|
||||
);
|
||||
})
|
||||
</script>
|
||||
|
Reference in New Issue
Block a user