나에게 무슨 문제가 있는지, 왜 이것이 작동하지 않는지 모르겠습니다. 임의의 개 사진 API가 작동하기를 원하지만 작동하지 않습니다. 아래 코드를 참조하세요.
export default {
data() {
return {
posts: [],
};
},
methods: {
async getData() {
try {
let response = await fetch ("https://dog.ceo/api/breeds/image/random");
this.posts = await response.json();
} catch (error){
console.log(error)
}
}
}
};
으아아아getData函数。一种可能的解决方案是,您可以在mounted生命周期挂钩中调用getData함수를 호출해야 합니다. 이곳은 Vue 놀이터입니다 link