我正在使用打字稿进行反应的项目,并且我很难弄清楚为什么会发生此错误,因此我基本上不能使用在互联网上找到的任何createContext示例。 我具体是从这里获得的:https://github.com/typescript-cheatsheets/react-typescript-cheatsheet我正在尝试使用“内容”部分中显示的内容。
import * as React from "react";
export function createCtx<A>(defaultValue: A) {
type UpdateType = React.Dispatch<React.SetStateAction<typeof defaultValue>>;
const defaultUpdate: UpdateType = () => defaultValue;
const ctx = React.createContext({
state: defaultValue,
update: defaultUpdate
});
function Provider(props: React.PropsWithChildren<{}>) {
const [state, update] = React.useState(defaultValue);
return <ctx.Provider value={{ state, update }} {...props} />;
}
return [ctx, Provider] as [typeof ctx, typeof Provider];
}
问题是每次它说有这个错误 在以下行中找不到名称空间“ ctx”:
return <ctx.Provider value={{ state, update }} {...props} />;
我仍然无法弄清楚为什么,有人可以看到我在这里做错了什么吗?这是我的tsconfig.json:
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "preserve",
"noImplicitAny": false,
"strictNullChecks": false
},
"include": [
"src"
]
}
任何帮助将不胜感激!
答案 0 :(得分:19)
您的文件扩展名很可能是.ts
而不是.tsx
。
因此,TypeScript将<ctx.Provider
解释为强制转换,并尝试在命名空间Provider
中找到类型ctx
。
答案 1 :(得分:2)
请使用tsx
而不是ts
,它会有一些细微的差别。 tsx显然允许在typescript中使用jsx标签。