在游戏使用的网络请求,http协议,常用的get、post方法实例
GET方法
新建请求对象,设置参数,请求方法,注册监听事件
1 | let params = `?gameId=${userAccountInfo.gameId}&accesstoken=${userAccountInfo.token}&userId=${userAccountInfo.userId}` |
监听请求状态,成功、失败、进度
1 | private onGetUserInfoComplete(event: egret.Event): void { |
POST方法
1 | let params = `gameId=${userAccountInfo.gameId}&accesstoken=${userAccountInfo.token}&userId=${userAccountInfo.userId}&isSlot=1&wealth=${spinCoins}` |
1 | private onSpinGetComplete(event: egret.Event): void { |