【发布时间】:2019-12-07 10:56:11
【问题描述】:
我正在尝试使用 React、typescript 和钩子 useContext 和 useReducer 创建一个简单的待办事项应用程序。
index.tsx
import React, { useContext, useReducer } from "react";
import ReactDOM from "react-dom";
import "./index.css";
import TodosContext from "./context";
import todosReducer from "./reducer";
import TodoList from "./components/TodoList";
import { ITodo } from "./context";
const App = () => {
const initialState = useContext(TodosContext);
const [state, dispatch] = useReducer(todosReducer, initialState);
return (
<TodosContext.Provider value={{ state, dispatch }}> <!-- error here --->
<TodoList />
</TodosContext.Provider>
);
};
ReactDOM.render(
<App />,
document.getElementById("root")
);
这里我得到状态错误
Type '{ state: any; dispatch: Dispatch<any>; }' is not assignable to type '{ todos: { id: number; text: string; complete: boolean; }[]; }'.
Object literal may only specify known properties, and 'state' does not exist in type '{ todos: { id: number; text: string; complete: boolean; }[]; }'.ts(2322)
TodoList.tsx
import React, { useContext } from "react";
import TodosContext from "../context";
import { ITodo } from "../context";
import { initialState } from "../context";
export default function TodoList() {
const { state } = useContext(TodosContext); <!-- error here --->
return (
<div>
<ul>
{state.todos.map(todo => (
<li key={todo.id}>
<span>{todo.text}</span>
<button>edit</button>
<button>delete</button>
</li>
))}
</ul>
</div>
);
}
在这里我得到了同样的状态错误
Property 'state' does not exist on type '{ todos: { id: number; text: string; complete: boolean; }[]; }'.ts(2339)
context.tsx
import React from "react";
export interface ITodo {
id: number;
text: string;
complete: boolean;
state?: any; <!-- state is included in the interface --->
}
export const initialState = [
{ id: 1, text: "todo 1", complete: false },
{ id: 2, text: "todo 2", complete: false },
{ id: 3, text: "todo 3", complete: true }
];
const TodosContext = React.createContext({
todos: [
{ id: 1, text: "todo 1", complete: false },
{ id: 2, text: "todo 2", complete: false },
{ id: 3, text: "todo 3", complete: true }
]
});
export default TodosContext;
reducer.tsx
export default function reducer(state: any, action: any) {
switch (action.type) {
default:
return state;
}
}
我已向 ITodo 界面添加状态以查看是否有帮助,但没有。
如何为类型添加状态
【问题讨论】:
标签: reactjs typescript react-hooks