wiki.sine.space | sinespace

Difference between revisions of "Scripting/SWebResponse"

From wiki.sine.space
Jump to: navigation, search
Line 3: Line 3:
 
==Fields==
 
==Fields==
 
{{ScriptFunction|string|Error|{ get; }|Any error, will be empty or null if the request was successful|5 = local response = function(data)<br>
 
{{ScriptFunction|string|Error|{ get; }|Any error, will be empty or null if the request was successful|5 = local response = function(data)<br>
&nbsp;&nbsp;if data.Error == nil then<br>
+
&nbsp;&nbsp;if data.'''Error''' == nil then<br>
 
&nbsp;&nbsp;&nbsp;&nbsp;Space.Log("Data Loaded")<br>
 
&nbsp;&nbsp;&nbsp;&nbsp;Space.Log("Data Loaded")<br>
 
&nbsp;&nbsp;&nbsp;&nbsp;Space.Log(data.Response)<br>
 
&nbsp;&nbsp;&nbsp;&nbsp;Space.Log(data.Response)<br>
Line 13: Line 13:
 
{{ScriptFunction|string|Response|{ get; }|The body text of the webpage response if error is empty or null|5 = local response = function(data)<br>
 
{{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;if data.Error == nil then<br>
&nbsp;&nbsp;&nbsp;&nbsp;Space.Log(data.Response)<br>
+
&nbsp;&nbsp;&nbsp;&nbsp;Space.Log(data.'''Response''')<br>
 
&nbsp;&nbsp;end<br>     
 
&nbsp;&nbsp;end<br>     
 
end}}
 
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