exports.main = async (event, context) => {
const playlist =await rp(URL).then(res=>{
return JSON.parse(res).result;
}).catch(err=>{
console.log(err)
})
// console.log(playlist);
for(let i =0, len = playlist.length;i<len;i++){
// 将获取的数据逐条插入数据库
await db.collection(‘playlist’).add({
data:{
…playlist[i],
createTime: db.serverDate(), // 获取服务器端的时间,用于排序
}
}).then((res)=>{
console.log(‘插入成功’)
}).catch((err)=>{
console.log(err);
console.log(‘插入失败’)
})
}
}