wiki.sine.space | sinespace

Difference between revisions of "Scripting/SWebResponse"

From wiki.sine.space
Jump to: navigation, search
(Created page with "The SWebResponse class returns the result of a HTTP GET/POST request ==Fields== {{ScriptFunction|string|Error|{ get; }|Any error, will be empty or null if the request was suc...")
 
(4 intermediate revisions by the same user not shown)
Line 2: Line 2:
  
 
==Fields==
 
==Fields==
{{ScriptFunction|string|Error|{ get; }|Any error, will be empty or null if the request was successful}}
+
{{ScriptFunction|string|Error|{ get; }|Any error, will be empty or null if the request was successful|5 = local response = function(data)<br>
{{ScriptFunction|string|Response|{ get; }|The body text of the webpage response if error is empty or null}}
+
&nbsp;&nbsp;if data.'''Error''' == nil then<br>
 +
&nbsp;&nbsp;&nbsp;&nbsp;Space.Log("Data Loaded")<br>
 +
&nbsp;&nbsp;&nbsp;&nbsp;Space.Log(data.Response)<br>
 +
&nbsp;&nbsp;else<br>
 +
&nbsp;&nbsp;&nbsp;&nbsp;Space.Log("Error Found")<br>
 +
&nbsp;&nbsp;end<br>   
 +
end}}
 +
 
 +
{{ScriptFunction|string|Response|{ get; }|The body text of the webpage response if error is empty or null|5 = local response = function(data)<br>
 +
&nbsp;&nbsp;if data.Error == nil then<br>
 +
&nbsp;&nbsp;&nbsp;&nbsp;Space.Log(data.'''Response''')<br>
 +
&nbsp;&nbsp;end<br>   
 +
end}}
  
 
{{Scripting Navbox}}
 
{{Scripting Navbox}}

Revision as of 18:55, 20 April 2017

The SWebResponse class returns the result of a HTTP GET/POST request

Fields

Error

string Error { get; }

Any error, will be empty or null if the request was successful

local response = function(data)

  if data.Error == nil then
    Space.Log("Data Loaded")
    Space.Log(data.Response)
  else
    Space.Log("Error Found")
  end

end


Response

string Response { get; }

The body text of the webpage response if error is empty or null

local response = function(data)

  if data.Error == nil then
    Space.Log(data.Response)
  end

end