Difference between revisions of "UrlLoader:load"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2012.2.2<br/> === Description === <br /> Loads data from the specified URL. If there is any load operation in progress, it is terminat...")
 
Line 7: Line 7:
 
<br />
 
<br />
 
<source lang="lua">
 
<source lang="lua">
= UrlLoader:load(urlmethodheadersbody,)
+
UrlLoader:load(url,method,headers,body)
 
</source>
 
</source>
'''url:''' (string, optional) URL to download. This parameter is optional and if specified loading starts immediately. ''''''<br/>
+
'''url''': (string, optional) URL to download. This parameter is optional and if specified loading starts immediately. ''''''<br/>
'''method:''' (string, default = &quot;get&quot;) HTTP request method. ''''''<br/>
+
'''method''': (string, default = &quot;get&quot;) HTTP request method. ''''''<br/>
'''headers:''' (table, optional) HTTP headers. ''''''<br/>
+
'''headers''': (table, optional) HTTP headers. ''''''<br/>
'''body:''' (string, optional) HTTP body data. This data is sent as the message body of a request. ''''''<br/>
+
'''body''': (string, optional) HTTP body data. This data is sent as the message body of a request. ''''''<br/>

Revision as of 10:20, 23 August 2018

Available since: Gideros 2012.2.2

Description


Loads data from the specified URL. If there is any load operation in progress, it is terminated and new progress starts.
Please refer to UrlLoader.new for more detailed description of `url`, `method` and `body` parameters.

 UrlLoader:load(url,method,headers,body)

'url: (string, optional) URL to download. This parameter is optional and if specified loading starts immediately. '
'method: (string, default = "get") HTTP request method. '
'headers: (table, optional) HTTP headers. '
'body: (string, optional) HTTP body data. This data is sent as the message body of a request. '