DataStorePages

非推奨を表示

*このコンテンツは、ベータ版のAI(人工知能)を使用して翻訳されており、エラーが含まれている可能性があります。このページを英語で表示するには、 こちら をクリックしてください。

作成できません
複製されていません

Class.Pages オブジェクトのページに OrderedDataStore のキー/値ペアが含まれている特別なタイプのオブジェクト。このオブジェクトの場合、 GetCurrentPage() は、キー名の 1> キー1> と、値の

コードサンプル

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()

概要

プロパティ

Pages から継承した プロパティ
  • 読み取り専用
    複製されていません
    並列読み取り

    現在のページが利用可能な最後のページであるかどうか。

方法

Pages から継承した 方法
  • 現在のページにアイテムを戻します。アイテムのキーは、このオブジェクトのソースによって決定されます。

  • イールド

    ページオブジェクトの次のページにイテレートします。

プロパティ

方法

イベント