1、在实例对象上添加两个属性:default(默认配置) 与 interscptors
// //构造函数function Axios(config) {//初始化this.defaults = config;//为了创建 default 默认属性this.interceptors = {request: {},response: {}}}
2、在原型对象上添加方法
//原型添加相关的方法Axios.prototype.request = function (config) {console.log('发送 AJAX 请求 请求的类型为 ' + config.method);}Axios.prototype.get = function (config) {return this.request({ method: 'GET' });}Axios.prototype.post = function (config) {return this.request({ method: 'POST' });}
3、通过bind方法,将实例对象中的属性与方法添加到instance中,并将instance返回,实现将axios当作对象或方法使用。
//声明函数function createInstance(config) {//实例化一个对象let context = new Axios(config);// context.get() context.post() 但是不能当做函数使用 context() X//创建请求函数let instance = Axios.prototype.request.bind(context);// instance 是一个函数 并且可以 instance({}) 此时 instance 不能 instance.get X//将 Axios.prototype 对象中的方法添加到instance函数对象中Object.keys(Axios.prototype).forEach(key => {instance[key] = Axios.prototype[key].bind(context);// this.default this.interceptors});// //为 instance 函数对象添加属性 default 与 interceptorsObject.keys(context).forEach(key => {instance[key] = context[key];});return instance;}let axios = createInstance();axios.get({});axios.post({});