dart:html
庫中Storage
類的用法介紹如下。
Window.localStorage 和 Window.sessionStorage 屬性使用的類型。存儲實現為 Map
要存儲和獲取值,請使用 Dart 的內置 map 語法:
window.localStorage['key1'] = 'val1';
window.localStorage['key2'] = 'val2';
window.localStorage['key3'] = 'val3';
assert(window.localStorage['key3'] == 'val3');
您可以使用 Map API,例如 containsValue()、clear() 和長度:
assert(window.localStorage.containsValue('does not exist') == false);
window.localStorage.clear();
assert(window.localStorage.length == 0);
相關用法
- Dart Storage.forEach用法及代碼示例
- Dart Storage.remove用法及代碼示例
- Dart Storage.containsValue用法及代碼示例
- Dart Storage.containsKey用法及代碼示例
- Dart Storage.addAll用法及代碼示例
- Dart Storage.putIfAbsent用法及代碼示例
- Dart Storage.clear用法及代碼示例
- Dart Stopwatch構造函數用法及代碼示例
- Dart Stopwatch用法及代碼示例
- Dart StreamTransformer構造函數用法及代碼示例
- Dart String.replaceAll用法及代碼示例
- Dart Stream.fromFutures用法及代碼示例
- Dart StreamController用法及代碼示例
- Dart StringList.first用法及代碼示例
- Dart Stream.fold用法及代碼示例
- Dart Stream.map用法及代碼示例
- Dart String.fromCharCodes用法及代碼示例
- Dart StreamSubscription用法及代碼示例
- Dart String.trim用法及代碼示例
- Dart String.lastIndexOf用法及代碼示例
- Dart String.replaceRange用法及代碼示例
- Dart StringList.length用法及代碼示例
- Dart Stream.asBroadcastStream用法及代碼示例
- Dart Stream.handleError用法及代碼示例
- Dart String.toLowerCase用法及代碼示例
注:本文由純淨天空篩選整理自dart.dev大神的英文原創作品 Storage class。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。