wechat-lib 里面 index.js 里的
async handle (operation, ...args) {
const tokenData = await this.fetchAccessToken()
const options = this[operation](tokenData.access_token, ...args)
const data = await this.request(options)
return data
}
请问老师
这个const options = this[operation](tokenData.access_token, ...args)里面
this[operation]这是什么意思呀?