Quick-Cocos2d-x CCHttpRequest详细说明及用法

前端之家收集整理的这篇文章主要介绍了Quick-Cocos2d-x CCHttpRequest详细说明及用法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

CCHttpRequest的用法很简单。


1、Get方法,设置URL,响应事件

1
2
3
4
5
6
7
8
9
10
11
--[[
监听:self:onResponseGet(event)
方法:GET
--]]
localrequest=network.createHTTPRequest(function(event)
self:onResponseGet(event)
end,url, "GET" )
request:setTimeout(30)
request:start()


默认超时时间为10s,这里调用setTimeout设置30s超时。


2、POST方法,与GET方法相似,只不过要另外添加数据

1
2
3
4
--调用addPOSTValue向Form中添加键值对例如:key:value
for key,valueinpairs(dataInfo) do
request:addPOSTValue(key,value)
end

dataInfo是一个保存要发送数据的table集合。


下面是回调方法

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
functionHttpRequestTest:onResponseGet(event)
localrequest=event.request
if event.name~= "completed" then--當為completed表示正常結束此事件
print( "request:getErrorCode(),request:getErrorMessage()" ,request:getErrorCode(),request:getErrorMessage())
return
end
localcode=request:getResponseStatusCode()
if code~=200then--成功
print( "code" ,code)
return
end
localstrResponse=string.trim(request:getResponseString())
print(strResponse)
end


常用的状态代码有以下几个值:

200 - 服务器成功返回网页;

404 - 请求的网页不存在;

503 - 服务器暂时不可用;


来源网址:http://www.jb51.cc/article/p-bxigsxci-no.html

原文链接:https://www.f2er.com/cocos2dx/344807.html

猜你在找的Cocos2d-x相关文章