本文整理汇总了TypeScript中src/store/authentication.setToken函数的典型用法代码示例。如果您正苦于以下问题:TypeScript setToken函数的具体用法?TypeScript setToken怎么用?TypeScript setToken使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了setToken函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: setStorage
export const expire = () => {
// Remove these from local storage so if login fails, next time we jump to login sooner.
setStorage(AUTH_TOKEN, '');
setStorage(AUTH_SCOPES, '');
setStorage(AUTH_EXPIRE_DATETIME, '');
store.dispatch(setToken(null, null));
}
示例2: it
it('dispatches setToken from values in localStorage', () => {
window.localStorage.setItem(AUTH_TOKEN, testToken2);
window.localStorage.setItem(AUTH_SCOPES, testScopes);
refresh();
const action = setToken(testToken2, testScopes);
expect(store.dispatch).toHaveBeenCalledWith(action);
});
示例3: getStorage
export const refresh = () => {
const authToken = getStorage(AUTH_TOKEN);
const scopes = getStorage(AUTH_SCOPES);
store.dispatch(setToken(authToken, scopes));
}