在Vue中显示来自Rapidapi的API数据

时间:2020-04-13 11:02:17

标签: javascript api vue.js

我正在使用vueJS和Rapidapi,并且尝试使用vue从API显示数据并使用JS Fetch方法检索API。但是,当我运行代码时,我得到的只是启动它的值(即:[])。

<template>
  <div>
    <div>{{ chuckData }}</div>
  </div>
</template>

<script>
var chuck = [];
fetch("https://matchilling-chuck-norris-jokes-v1.p.rapidapi.com/jokes/random", {
  method: "GET",
  headers: {
    "x-rapidapi-host": "matchilling-chuck-norris-jokes-v1.p.rapidapi.com",
    "x-rapidapi-key": "***"
  }
})
  .then(response => response.json()) // Getting the actual response data
  .then(data => {
    chuck = data;
  })
  .catch(err => {
    console.log(err);
  });

export default {
  data() {
    return {
      chuckData: chuck
    };
  }
};
</script>

我还尝试使用以下内容:

var chuck fetch("https://matchilling-chuck-norris-jokes-v1.p.rapidapi.com/jokes/random", {...}

但是我所得到的只是[对象承诺]没有我期望显示的数据。

我在做什么错了?

2 个答案:

答案 0 :(得分:1)

您应该define a method in the Vue instance获取API数据。

像这样:

methods: {
    getRapidApiData() {
        //do the fetch.... etc
    }
}

您可以删除var chuck = [];,因为它是不需要的,而将chuck的引用替换为this.chuckData

然后您可以启动chuckData: []之类的chuckData

答案 1 :(得分:0)

最终的解决方案如下所示:

<div class="col-md-3" v-for="result in chuck">
         {{result}}
</div>

<script>
export default {
  data() {
    return {
      chuck: []
    };
  },
  mounted() {
    this.getData();
  },
  methods: {
    getData() {
    fetch("https://matchilling-chuck-norris-jokes-v1.p.rapidapi.com/jokes/random", {
      method: "GET",
      headers: {
        "x-rapidapi-host": "matchilling-chuck-norris-jokes-v1.p.rapidapi.com",
        "x-rapidapi-key": "<API KEY>"
      }
    })
      .then(response => response.json())
      .then(data => {
        this.chuck = data;
      });
    }
  }
};
</script>

谢谢!