自己编写代码去听网易云音乐的歌曲,以及观看MV,还可以下载奥

注意:本html文件不能收听或者下载试听歌曲

代码:


<html>

	<head>
		<title>听歌进行时title>
		<meta charset="utf-8" />
		
		<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js">script>
		<script src="https://unpkg.com/axios/dist/axios.min.js">script>
	head>

	<body>
		<div id="app">
			<input type="text" v-model="query" @keyup.enter="getList" placeholder="请输入歌手/歌曲名称,然后回车" style="width:200px" />
			<br />
			<br />
			<div style="position:absolute;width:700px;right:20px;top:20px;">
				<audio :src="musicSrc" controls="controls" autoplay="autoplay" style="width: 700px;">
					Your browser does not support the audio element.
				audio>
				<br />
				<br />
				<video :src="mvSrc" controls="controls" autoplay="autoplay" style="width:700px">
					your browser does not support the video tag
				video>
			div>
			<ol>
				<li v-for="item in songs">
					{
    {item.name}}   
					<a href="javascript:void(0);" @click="getMusic(item.id)">mp3a>   
					<a href="javascript:void(0);" v-if="item.mvid != 0" @click="getMv(item.mvid)">mva>
				li>
			ol>
			<br />
		div>
	body>
	<script type="text/javascript">
		var app = new Vue({
      
			el: "#app",
			data: {
      
				query: "",
				musicSrc: "",
				mvSrc: "dddddd",
				songs: []
			},
			methods: {
      
				getList: function() {
      
					var that = this;
					axios.get("https://autumnfish.cn/search?keywords=" + this.query).then(function(response) {
      
						that.songs = response.data.result.songs;
					}, function(err) {
      
						console.log(err);
					})
				},
				getMusic: function(id) {
      
					var that = this;
					axios.get("https://autumnfish.cn/song/url?id=" + id).then(function(response) {
      
						that.musicSrc = response.data.data[0].url;
					}, function(err) {
      
						console.log(err);
					})
				},
				getMv: function(mvid) {
      
					var that = this;
					axios.get("https://autumnfish.cn/mv/url?id=" + mvid + "&r=1080").then(function(response) {
      
						console.log(response.data.data.url);
						that.mvSrc = response.data.data.url;
					}, function(err) {
      
						console.log(err);
					})
				}
			}
		})
	script>

html>

结果:
自己编写代码去听网易云音乐的歌曲,以及观看MV,还可以下载奥_第1张图片
解释:

上面的代码就是一个vue的html文件,直接在浏览器打开就可以了,如果不想新建html文件的可以点击直接下载html文件

接下来说一下如何查找歌曲,当我们把该文件在浏览器中打开之后,如下图所示:

自己编写代码去听网易云音乐的歌曲,以及观看MV,还可以下载奥_第2张图片

之后来实际操作一下吧,在文本框中输入邵帅之后点击回车,就是这个样子的了,如下图:

自己编写代码去听网易云音乐的歌曲,以及观看MV,还可以下载奥_第3张图片
当我们点击《写给黄淮》这首歌名后面的mp3的时候,右上角的歌曲播放区域就会播放歌曲,如下图:

自己编写代码去听网易云音乐的歌曲,以及观看MV,还可以下载奥_第4张图片
当我们点击mv的时候,就可以在右边播放mv了,如下图:

自己编写代码去听网易云音乐的歌曲,以及观看MV,还可以下载奥_第5张图片
在网易云音乐APP上面,如果想下载这些歌曲都是需要vip的,在这里你可以在歌曲播放进度条上面单击鼠标右键—》选择另存音频为…,这样就可以把歌曲下载到你本地了,如果你想下载mv,你可以把鼠标放在播放的mv上面单击鼠标右键—》选择另存视频为…,这样就可以把mv下载到你本地了

你可能感兴趣的:(vue)