javascript
// 异步请求获取结果并通过回调抛出结果
function getlist(params,callback){
getproductapi(params).then(res=>{
callback(res)
}).catch(err=>{
callback(err)
})
}
//使用方法
getlist(params,(result)=>{
console.log('result')
})