Vuex map functions with TypeScript(带有TypeScript的Vuex地图函数)
本文介绍了带有TypeScript的Vuex地图函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个用于我的状态(游戏命名空间)的接口,如下所示:
interface GameState {
selectedTab: number;
timeout: number;
snackbar: boolean;
text: string;
doneTasks: number;
taskTypes: TaskType[];
stages: Stage[];
}
我正在尝试使用mapState在组件内映射"taskTypes",如下所示:
...mapState('game', {
taskTypes: (state: GameState): TaskType[] => state.taskTypes,
}),
我得到以下错误:类型为‘{taskTypes:(state:GameState)=>;TaskType[];}’的参数无法分配给类型为‘string[]’的参数。&q;
将函数的";state";参数类型定义为‘any’时,它会编译并运行,因此我尝试调试DevTools中的那个函数,看看";state";参数包含什么,它保存我的游戏状态,它具有在GameState接口中定义的完全相同的道具。
有没有人知道为什么ts不让我用正确的类型定义";state";参数(这就是首先定义接口并避免‘any’的全部目的)
这也不起作用:
...mapState({
taskTypes: ({ state }: Store<GameState>): TaskType[] => state.taskTypes,
}),
有没有人遇到过这样的问题?有没有什么好办法来处理这个问题?
适用于mapActions等.
更新 我尝试为我的存储和模块提供更好的类型。目前,它们如下所示: 主商店:
export default new Store<RootState>({
modules: {
users,
game,
},
});
RootState为:
export interface RootState {
game: GameState;
users: UserState;
}
游戏模块:
type GameActionContext = ActionContext<GameState, RootState>;
const gameModule: Module<GameState, RootState> = {
namespaced: true,
state: {
selectedTab: 0,
timeout: 5000,
snackbar: false,
text: '',
doneTasks: 0,
taskTypes: [...],
stages: [...],
} as GameState,
mutations: {/*Mutations*
沃梦达教程
本文标题为:带有TypeScript的Vuex地图函数


猜你喜欢
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
- Flexslider 箭头未正确显示 2022-01-01
- 400或500级别的HTTP响应 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- addEventListener 在 IE 11 中不起作用 2022-01-01
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- 失败的 Canvas 360 jquery 插件 2022-01-01