这个是老师写的云函数调用的方法
这里我使用传统的方法调用音乐的播放地址
var url = ‘http://musicapi.xiecheng.live’+ ‘/song/url?id=’ + musicId
getMusicList: function (url) {
var that = this
wx.request({
url: url,
data: {},
method: ‘GET’,
header: {
‘content-type’: ‘application/json’
},
success: function (res) {
console.log(res)
},
fail: function () {
console.log(“failed”)
},
})
},
返回结果是空