ZH-CN/GetAllAccountData: Difference between revisions
Jump to navigation
Jump to search
Qwe7769611 (talk | contribs) (Created page with "__NOTOC__ {{Server function}} This function returns a table containing all the user data for the account provided ==Syntax== <syntaxhighlight lang="lua"> table getAllAccou...") |
Qwe7769611 (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
{{Server function}} | {{Server function}} | ||
此函数返回一个表,其中包含所提供帐户[[account]]的所有用户数据 | |||
== | ==语法== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
table getAllAccountData ( account theAccount ) | table getAllAccountData ( account theAccount ) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
{{ | {{OOP_ZH-CN||[[account]]:getAllData|data|}} | ||
===Required Arguments=== | ===Required Arguments=== | ||
*'''theAccount:''' | *'''theAccount:''' 要从中调取所有数据的帐户 | ||
===Returns=== | ===Returns=== | ||
包含所有用户数据的[[表]]。这张桌子可能是空的. | |||
==Example== | ==Example== |
Revision as of 06:54, 4 February 2021
此函数返回一个表,其中包含所提供帐户account的所有用户数据
语法
table getAllAccountData ( account theAccount )
OOP 语法 什么是OOP?
- 方法: account:getAllData(...)
- 变量: .data
Required Arguments
- theAccount: 要从中调取所有数据的帐户
Returns
包含所有用户数据的表。这张桌子可能是空的.
Example
function printAllData ( thePlayer ) local playerAccount = getPlayerAccount( thePlayer ) -- get his account if ( playerAccount ) then -- if we got the account then local data = getAllAccountData( playerAccount ) -- get data count = 0 for _ in pairs(data) do count = count + 1 end -- get the count outputChatBox ( "table holds " .. count .. " entries" ) -- output number of rows if ( data ) then for k,v in pairs ( data ) do outputChatBox(k..": "..v) -- print the key and value of each entry of data end end end end addCommandHandler( "getall", printAllData ) -- add a command handler for command 'getall'
Requirements
This template will be deleted.
See Also
- addAccount
- copyAccountData
- getAccount
- getAccountData
- getAccountName
- getAccountPlayer
- getAccountSerial
- getAccounts
- getAccountsBySerial
- getAllAccountData
- getPlayerAccount
- isGuestAccount
- logIn
- logOut
- removeAccount
- setAccountData
- setAccountPassword
- getAccountByID
- getAccountID
- getAccountIP
- getAccountsByData
- getAccountsByIP
- setAccountName