6 lines
103 B
JavaScript
6 lines
103 B
JavaScript
//响应拦截器
|
|
module.exports = (response) => {
|
|
// 对响应数据做点什么
|
|
return response;
|
|
}
|