await的使用方式

案列

       async changeWay(way,id) {
            console.log(way,id);
            var res=await this.axios({
                method: 'post',
                 url: `${
                    this.siteUrl
                }/app/channel/updateSettleType?appid=web.2019×tamp=${
                    this.timestamp
                }`,
                data: {
                    channelId: id,
                    settleType: way
                }            
            })
             console.log(res);

        },

你可能感兴趣的:(await的使用方式)