react.js fetch 基于单例+轻提示(toast)的简单封装
Services /* eslint-disable no-useless-constructor */ import config from './config.js'; import 'whatwg-fetch' import toast from '../toast/index.js' export default class Services { constructor() { } // 单例 static getInstance() { if (!Services.instance) { Services.instance = new Services(); r
下载地址
用户评论