本文整理匯總了TypeScript中@jupyterlab/coreutils/src.StateDB.clear方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript StateDB.clear方法的具體用法?TypeScript StateDB.clear怎麽用?TypeScript StateDB.clear使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類@jupyterlab/coreutils/src.StateDB
的用法示例。
在下文中一共展示了StateDB.clear方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: it
it('should only clear its own namespace', async () => {
const { localStorage } = window;
const db1 = new StateDB({ namespace: 'test-namespace-1' });
const db2 = new StateDB({ namespace: 'test-namespace-2' });
expect(localStorage.length).to.equal(0);
await db1.save('foo', { bar: null });
expect(localStorage).to.have.length(1);
await db2.save('baz', { qux: null });
expect(localStorage).to.have.length(2);
await db1.clear();
expect(localStorage).to.have.length(1);
await db2.clear();
expect(localStorage.length).to.equal(0);
});
示例2: it
it('should allow an overwrite data transformation', async () => {
const transform = new PromiseDelegate<StateDB.DataTransform>();
const db = new StateDB({
namespace: 'test',
transform: transform.promise
});
const prepopulate = new StateDB({ namespace: 'test' });
const key = 'foo';
const correct = 'bar';
const incorrect = 'baz';
const transformation: StateDB.DataTransform = {
type: 'overwrite',
contents: { [key]: correct }
};
// By sharing a namespace, the two databases will share data.
await prepopulate.save(key, incorrect);
let value = await prepopulate.fetch(key);
expect(value).to.equal(incorrect);
transform.resolve(transformation);
await transform.promise;
value = await db.fetch(key);
expect(value).to.equal(correct);
await db.clear();
});