Rufen Sie das Rückgabeergebnis der Axios Get-Anfrage in Vue.js ab
<p>Mein Projekt ist ein Vue.js-Projekt. Ich verwende Flask, um die API zu verwalten. Wenn ich versuche, eine Anfrage mit axios.get zu stellen, gibt meine API ein Objekt Objet zurück. Wenn ich die gleiche Anfrage in Postman versuche, funktioniert es tatsächlich. Es gibt Daten zurück. </p>
<p>Mein Code ist hier: </p>
<pre class="brush:php;toolbar:false;"><script>
Axios aus 'Axios' importieren
const URL = 'http://localhost:8080/'
mount(){
axios.get(URL + "/KPI/get_category/1").then(response=>{
for (const data in Response.data) {
this.kalite.push(JSON.parse(JSON.stringify(response.data[data])))
}
for(const data in this.kalite){
axios.get(URL + "/KPI/get_last_input/"+this.kalite[data]
['id']).then(response=>{
console.log("Antwort " + Antwort)
})
}
})
}
</script></pre>
<p>Die Ergebnisse, die ich auf der Konsole sehe, sind:
Antwort[Objekt Objekt]</p>