WorkletSharedStorage: keys() method
Deprecated: This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see the compatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.
Phương thức keys() của giao diện WorkletSharedStorage trả về một async iterator, chứa các khóa cho mỗi mục trong một phiên bản WorkletSharedStorage.
Cú pháp
keys()
Tham số
Không có.
Giá trị trả về
Mảng các khóa thuộc tính có thể liệt kê của WorkletSharedStorage.
Ngoại lệ
TypeError-
Được ném ra nếu trang gọi không có Shared Storage API trong privacy sandbox enrollment process thành công.
Ví dụ
// keys() available inside a shared storage worklet module
const storage = await this.sharedStorage;
async function logKeys() {
for await (const key of storage.keys()) {
console.log(key);
}
}