Difference between revisions of "UrlLoader:load"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
'''<translate>Available since</translate>:''' Gideros 2012.2.2<br/>
+
'''Available since:''' Gideros 2012.2.2<br/>
'''<translate>Class</translate>:''' [[Special:MyLanguage/UrlLoader|UrlLoader]]<br/>
+
'''Class:''' [[UrlLoader]]<br/>
=== <translate>Description</translate> ===
+
 
<translate><br />
+
=== Description ===
Loads data from the specified URL. If there is any load operation in progress, it is terminated and new progress starts.<br />
+
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.<br />
+
<syntaxhighlight lang="lua">
<br /></translate>
+
UrlLoader:load(url,method,headers,body)
<source lang="lua">
 
UrlLoader:load(url,method,headers,body)
 
 
</source>
 
</source>
=== <translate>Parameters</translate> ===
+
 
'''url''': (string, optional) <translate>URL to download. This parameter is optional and if specified loading starts immediately.</translate> <br/>
+
Please refer to [[UrlLoader.new]] for more detailed description of ''url'', ''method'' and ''body'' parameters.
'''method''': (string, default = &quot;get&quot;) <translate>HTTP request method.</translate> <br/>
+
 
'''headers''': (table, optional) <translate>HTTP headers.</translate> <br/>
+
=== Parameters ===
'''body''': (string, optional) <translate>HTTP body data. This data is sent as the message body of a request.</translate> <br/>
+
'''url''': (string, optional) URL to download. This parameter is optional and if specified loading starts immediately<br/>
 +
'''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
 +
 
 +
{{UrlLoader}}

Latest revision as of 15:32, 13 July 2023

Available since: Gideros 2012.2.2
Class: UrlLoader

Description

Loads data from the specified URL. If there is any load operation in progress, it is terminated and new progress starts. <syntaxhighlight lang="lua"> UrlLoader:load(url,method,headers,body) </source>

Please refer to UrlLoader.new for more detailed description of url, method and body parameters.

Parameters

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