yux-storage
Advanced tools
Comparing version 1.0.0 to 1.0.1
{ | ||
"name": "yux-storage", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "yux-storage 是一个基于 HTML5 IndexedDB 封装的 Web 数据本地离线存储库", | ||
@@ -22,3 +22,6 @@ "main": "yux-storage.js", | ||
}, | ||
"files": [ | ||
"yux-storage.js" | ||
], | ||
"homepage": "https://github.com/yued-fe/yux-storage#readme" | ||
} |
@@ -22,3 +22,3 @@ # yux-storage | ||
1. 直接在页面上引用 yux-storage.js | ||
1. 直接在 [github](https://github.com/yued-fe/yux-storage) 获取 yux-storage.js | ||
@@ -29,3 +29,3 @@ ```html | ||
2. 通过 npm 安装 | ||
2. 通过 [npm](https://www.npmjs.com/package/yux-storage) 安装 | ||
@@ -218,3 +218,3 @@ ```cmd | ||
默认引用该文件后,内部会暴露一个全局变量 yuxStorage,由于 indexedDB 的打开和初始化都是异步的,可能会出现以下报错 | ||
默认情况下,内部会暴露一个全局变量 yuxStorage,由于 indexedDB 的打开或者创建都是异步的,可能会出现以下报错 | ||
@@ -225,6 +225,6 @@ ```js | ||
这时,只需要将方法放在 `new YuxDB()` 的回调或者 Promise | ||
这时,只需要将方法放在 `new yuxDB()` 的回调或者 Promise | ||
```js | ||
new YuxDB().then(function(yuxStorage){ | ||
new yuxDB().then(function(yuxStorage){ | ||
// 初始化完成 | ||
@@ -235,3 +235,3 @@ yuxStorage.getItem('somekey') | ||
// async | ||
yuxStorage = await new YuxDB(); | ||
yuxStorage = await new yuxDB(); | ||
// 初始化完成 | ||
@@ -254,3 +254,3 @@ yuxStorage.getItem('somekey') | ||
> YuxDB 是整个库的构造函数,new YuxDB() 返回的是一个 Promise 对象, 初始完成后返回的 yuxStorage 才具备以上 API 的各种方法 | ||
> yuxDB 是整个库的构造函数,new YuxDB() 返回的是一个 Promise 对象, 初始完成后返回的 yuxStorage 才具备以上 API 的各种方法 | ||
@@ -257,0 +257,0 @@ ## 联系我 |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
12116
4