DataStorePages
Mostrar obsoleto
*Este conteúdo é traduzido por IA (Beta) e pode conter erros. Para ver a página em inglês, clique aqui.
Um tipo especial de Pages objeto cujas páginas contêm pares de chave/valor de um OrderedDataStore . Para este Objeto, GetCurrentPage() retorna uma matriz de tabelas, cada uma contendo chaves chamadas 1>chave1> e 4>valor4> ; estas reflet
Amostras de código
OrderedDataStore Basics
local DataStoreService = game:GetService("DataStoreService")
local pointsStore = DataStoreService:GetOrderedDataStore("Points")
local function printTopTenPlayers()
local isAscending = false
local pageSize = 10
local pages = pointsStore:GetSortedAsync(isAscending, pageSize)
local topTen = pages:GetCurrentPage()
-- The data in 'topTen' is stored with the index being the index on the page
-- For each item, 'data.key' is the key in the OrderedDataStore and 'data.value' is the value
for rank, data in ipairs(topTen) do
local name = data.key
local points = data.value
print(name .. " is ranked #" .. rank .. " with " .. points .. "points")
end
-- Potentially load the next page...
--pages:AdvanceToNextPageAsync()
end
-- Create some data
pointsStore:SetAsync("Alex", 55)
pointsStore:SetAsync("Charley", 32)
pointsStore:SetAsync("Sydney", 68)
-- Display the top ten players
printTopTenPlayers()
Resumo
Propriedades
Propriedades herdados de PagesIndependentemente de a página atual ser a última página disponível.
Métodos
Métodos herdados de PagesRetorna os itens na página atual. As chaves do item são determinadas pela fonte deste Objeto.
itera para a próxima página no Objetode páginas, se possível.
Propriedades
Propriedades herdado de Pages
Métodos
Propriedades herdado de Pages