合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
# 具体某接口的请求封装:api/index.js配置 > 引入上一章的get函数 ``` import { get } from './helpers' ``` > 定义具体访问的接口,注意,这些接口是已存在的,不是在这里定义的,这里仅仅是为了规范代码而进行的简单封装。 ``` const getSeller = get('api/seller') const getGoods = get('api/goods') const getRatings = get('api/ratings') ``` > 将所有封装输出 ``` export { getSeller, getGoods, getRatings } ```