Pages

顯示已棄用項目

*此內容是使用 AI(Beta 測試版)翻譯,可能含有錯誤。若要以英文檢視此頁面,請按一下這裡

無法建立
未複製

一個基本上是桌子頁的對象,每個桌子頁都是一個排序的鑰匙/值對。

範例程式碼

Pages Iterator

-- Reformat pages as tables
local function pagesToTable(pages)
local items = {}
while true do
table.insert(items, pages:GetCurrentPage())
if pages.IsFinished then
break
end
pages:AdvanceToNextPageAsync()
end
return items
end
local function iterPageItems(pages)
local contents = pagesToTable(pages)
-- Track the current page number starting at 1
local pageNum = 1
-- Get last page number so we don't iterate over it
local lastPageNum = #contents
-- for resumes this coroutine until there's nothing to go through
return coroutine.wrap(function()
-- Loop until page number is greater than last page number
while pageNum <= lastPageNum do
-- Go through all the entries of the current page
for _, item in ipairs(contents[pageNum]) do
-- Pause loop to let developer handle entry and page number
coroutine.yield(item, pageNum)
end
pageNum += 1
end
end)
end
-- Using the iterPageItems function to iterate through the pages of a catalog search
local AvatarEditorService = game:GetService("AvatarEditorService")
local parameters = CatalogSearchParams.new()
parameters.SearchKeyword = "Hair"
local catalogPages = AvatarEditorService:SearchCatalog(parameters)
for item, pageNumber in iterPageItems(catalogPages) do
print(item, pageNumber)
end

概要

屬性

  • 唯讀
    未複製
    平行讀取

    是否要顯示當前頁面或不是最後一頁。

方法

屬性

IsFinished

唯讀
未複製
平行讀取

是否要顯示當前頁面或不是最後一頁。

方法

GetCurrentPage

返回當前頁面上的項目。項目的鑰匙是由此對物件的來源決定的。


返回

AdvanceToNextPageAsync

void
暫停

如果可能,請在頁面對物件中的下一頁返回。請注意,請求限制與端點原來的名稱相同。


返回

void

活動