Vue.jsでSpotify APIを叩いてNowPlayingを取得するプロジェクトを作成中です。
ボタンを押すタイミングでNowPlayingを取得するところまではできたのですが、ボタンを押した後に毎秒データを取得し、表示を更新するようにしたいです。
Vue
1<template> 2//省略 3 <button @click="getNowPlaying">再生中の曲情報取得</button> 4 <div v-if="nowPlaying != null"> 5 <p> 6 今再生中の曲 : {{ nowPlaying.item.artists[0].name }} の 7 {{ nowPlaying.item.name }} 8 </p> 9 <img :src="nowPlaying.item.album.images[1].url" /> 10 </div> 11//省略 12</template> 13 14<script> 15import axios from "axios"; 16export default { 17 data: function () { 18 return { 19 nowPlaying: null, 20 }; 21 }, 22 props: { 23 routeParams: Object, 24 }, 25 created: function () { 26 if (this.$route.hash) { 27 this.$router.push(this.$route.fullPath.replace("#", "?")); 28 } 29 }, 30 methods: { 31 spotifyLogin: function () { 32 //省略 33 }, 34 getNowPlaying: function () { 35 let endpoint = 36 "https://api.spotify.com/v1/me/player/currently-playing?market=JP"; 37 let data = { 38 headers: { 39 Authorization: 40 this.routeParams.token_type + " " + this.routeParams.access_token, 41 }, 42 data: {}, 43 }; 44 // setInterval(function () { 45 console.log("da"); 46 axios 47 .get(endpoint, data) 48 .then((res) => { 49 this.nowPlaying = res.data; 50 }) 51 .catch((err) => { 52 console.error(err); 53 }); 54 // }, 1000); 55 }, 56 }, 57}; 58</script> 59
setIntervalを使って繰り返しをしようと思ったのですが、繰り返しから抜け出す処理がないのかうまく行きませんでした。
何か参考になる情報があれば教えていただきたいです。
回答2件
あなたの回答
tips
プレビュー