HU/getBrowserSource: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ {{Client function hu}} {{New feature/item|3.0151|1.5.1|7392| This function can be used to retrieve the source code of a website (asynchronously). The size of the sou...")
 
No edit summary
Line 2: Line 2:
{{Client function hu}}
{{Client function hu}}
{{New feature/item|3.0151|1.5.1|7392|
{{New feature/item|3.0151|1.5.1|7392|
This function can be used to retrieve the source code of a website (asynchronously). The size of the source code is limited to 2 MiB (remaining bytes are cut).
Ez a funkció használható egy webhely forráskódjának lekérésére (asynchronously). A forráskód mérete 2 MiB-re van korlátozva (a megmaradó bájtok levágásra kerülnek).
}}
}}


Line 11: Line 11:
{{OOP||[[Element/Browser|browser]]:getSource}}
{{OOP||[[Element/Browser|browser]]:getSource}}
===Required arguments===
===Required arguments===
*'''webBrowser:''' The browser element you want to get the source of
*'''webBrowser:''' a böngészőelem, amelynek a forrását szeretné megkapni
*'''callback:''' a callback function with syntax as described below
*'''callback:''' egy callback function az alábbi szintaxissal


====Callback syntax====
====Visszahívó szintaxis====
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
function ( string code )
function ( string code )

Revision as of 17:43, 9 August 2018

Ez a funkció használható egy webhely forráskódjának lekérésére (asynchronously). A forráskód mérete 2 MiB-re van korlátozva (a megmaradó bájtok levágásra kerülnek).

Szintaxis

bool getBrowserSource ( browser webBrowser, function callback )

OOP Syntax Help! I don't understand this!

Method: browser:getSource(...)


Required arguments

  • webBrowser: a böngészőelem, amelynek a forrását szeretné megkapni
  • callback: egy callback function az alábbi szintaxissal

Visszahívó szintaxis

function ( string code )

Visszaadott érték

Returns true if valid arguments have been passed, false otherwise.

Példa

local browser = createBrowser(1024,1024,false,false)      --Create Browser

addEventHandler("onClientBrowserCreated",browser,function()
    loadBrowserURL(browser,"http://www.youtube.com")    --Load URL
end)

addEventHandler("onClientBrowserDocumentReady",browser,function(url)
    local rnt = getBrowserSource(browser,function(code)     --Get Browser Source and Call Function
        outputChatBox(code)                             --Output Code
    end)
    if rnt then
        outputChatBox("Browser Source Got",0,255,0)
    else
        outputChatBox("Failed To Get Browser Source",255,0,0)
    end
end)

Lásd még

Fordította

  • Surge