2023-07 spring-19-ajax updated

This commit is contained in:
stvort
2023-09-30 13:40:47 +04:00
parent 23ff8e956e
commit d148615e52
+1 -1
View File
@@ -50,7 +50,7 @@
<script>
function getDataByAxios() {
axios.get('https://rickandmortyapi.com/api/character/3')
.then(json => outputCharacter(json.data))
.then(response => outputCharacter(response.data))
}
</script>