您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
在TypeScript中使用Redux通常需要做一些额外的工作来确保类型安全和正确性。下面是一些与TypeScript配合使用Redux的常见做法:
// actionTypes.ts
export const INCREMENT = 'INCREMENT';
export const DECREMENT = 'DECREMENT';
// actions.ts
interface IncrementAction {
type: typeof INCREMENT;
}
interface DecrementAction {
type: typeof DECREMENT;
}
export type Action = IncrementAction | DecrementAction;
// state.ts
interface CounterState {
count: number;
}
const initialState: CounterState = {
count: 0,
};
export default initialState;
// reducer.ts
import { Action } from './actions';
import initialState, { CounterState } from './state';
const counterReducer = (state: CounterState = initialState, action: Action): CounterState => {
switch (action.type) {
case INCREMENT:
return { count: state.count + 1 };
case DECREMENT:
return { count: state.count - 1 };
default:
return state;
}
};
export default counterReducer;
createStore
函数创建store时,可以通过泛型指定store的state类型。// store.ts
import { createStore } from 'redux';
import counterReducer from './reducer';
import { CounterState } from './state';
const store = createStore<CounterState>(counterReducer);
export default store;
通过以上方式,可以在TypeScript中使用Redux,并保证类型安全和正确性。同时,使用Redux Toolkit等工具也可以简化Redux的使用,并提供更好的类型支持。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。