- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一些名为 project
的组件 Prop 通过了 Link
到 Route
像这样(我的项目对象进入 state
扩展属性):
<Link
to={{
pathname: path,
state: {
project,
},
}}
key={project.id}
>
<ProjectSummary project={project} deleteCallback={projectDelete}/>
</Link>
然后它在路由中接收并可以像这样传递给链接的组件:
<Route
path='/project/:id'
render={({ location }:any) => { //TYPE CHALLENGE HERE
const { state } = location;
return <ProjectDetails project={state.project} />
}}
/>
找到 any
输入 //TYPE CHALLENGE HERE
评论。我尝试了很多类型的“react-router”和“react-router-dom”,但找不到匹配的类型。
最接近的似乎是这个:
export interface RouteComponentProps<
Params extends { [K in keyof Params]?: string } = {},
C extends StaticContext = StaticContext,
S = H.LocationState
> {
history: H.History<S>;
location: H.Location<S>;
match: match<Params>;
staticContext?: C;
}
由于组件从该接口(interface)接收所有路由参数,但我扩展了 location
传入我的项目对象的位置。如果有任何相关性,这是 project
的类型我传入的对象:
export interface IFirebaseProject {
id: string,
authorFirstName: string,
authorId: string,
authorLastName: string
content: string
createdAt: firebase.firestore.Timestamp //firebase timestamp
title: string
}
我还发布了我认为最接近的方法时遇到的错误:
render={({ location }:RouteComponentProps<any, StaticContext, IFirebaseProject>) => {}
No overload matches this call.
Overload 1 of 2, '(props: RouteProps | Readonly<RouteProps>): Route<RouteProps>', gave the following error.
Type '({ location }: RouteComponentProps<any, StaticContext, IFirebaseProject>) => JSX.Element' is not assignable to type '(props: RouteComponentProps<any, StaticContext, unknown>) => ReactNode'.
Types of parameters '__0' and 'props' are incompatible.
Type 'RouteComponentProps<any, StaticContext, unknown>' is not assignable to type 'RouteComponentProps<any, StaticContext, IFirebaseProject>'.
Type 'unknown' is not assignable to type 'IFirebaseProject'.
Overload 2 of 2, '(props: RouteProps, context: any): Route<RouteProps>', gave the following error.
Type '({ location }: RouteComponentProps<any, StaticContext, IFirebaseProject>) => JSX.Element' is not assignable to type '(props: RouteComponentProps<any, StaticContext, unknown>) => ReactNode'.ts(2769)
index.d.ts(89, 5): The expected type comes from property 'render' which is declared here on type 'IntrinsicAttributes & IntrinsicClassAttributes<Route<RouteProps>> & Readonly<RouteProps> & Readonly<...>'
index.d.ts(89, 5): The expected type comes from property 'render' which is declared here on type 'IntrinsicAttributes & IntrinsicClassAttributes<Route<RouteProps>> & Readonly<RouteProps> & Readonly<...>'
编辑:
错误的文本全文 render={({ location }: { location: Location<{ project: IFirebaseProject }> }) => {
尝试:
No overload matches this call.
Overload 1 of 2, '(props: RouteProps | Readonly<RouteProps>): Route<RouteProps>', gave the following error.
Type '({ location }: { location: Location<{ project: IFirebaseProject;}>; }) => JSX.Element' is not assignable to type '(props: RouteComponentProps<any, StaticContext, unknown>) => ReactNode'.
Types of parameters '__0' and 'props' are incompatible.
Type 'RouteComponentProps<any, StaticContext, unknown>' is not assignable to type '{ location: Location<{ project: IFirebaseProject; }>; }'.
Types of property 'location' are incompatible.
Type 'Location<unknown>' is not assignable to type 'Location<{ project: IFirebaseProject; }>'.
Type 'unknown' is not assignable to type '{ project: IFirebaseProject; }'.
Overload 2 of 2, '(props: RouteProps, context: any): Route<RouteProps>', gave the following error.
Type '({ location }: { location: Location<{ project: IFirebaseProject;}>; }) => JSX.Element' is not assignable to type '(props: RouteComponentProps<any, StaticContext, unknown>) => ReactNode'.ts(2769)
index.d.ts(89, 5): The expected type comes from property 'render' which is declared here on type 'IntrinsicAttributes & IntrinsicClassAttributes<Route<RouteProps>> & Readonly<RouteProps> & Readonly<...>'
index.d.ts(89, 5): The expected type comes from property 'render' which is declared here on type 'IntrinsicAttributes & IntrinsicClassAttributes<Route<RouteProps>> & Readonly<RouteProps> & Readonly<...>'
最佳答案
你们太亲密了! S
RouteComponentProps
的参数控制 state
为 location
键入和 history
props,这样就是你想要使用的东西。
错误是你设置了S
至 IFirebaseProject
这意味着状态本身就是一个 IFirebaseProject
.但实际上状态看起来像{project}
.它是一个带有键 project
的对象其值为 IFirebaseProject
.所以 S
的正确类型是{project: IFirebaseProject}
.
正确设置所有类型后,它是这样的:
render={({ location }: RouteComponentProps<{id: string}, StaticContext, {project: IFirebaseProject}>) => {
但是location
不使用其他两个泛型,所以这很好:
render={({ location }: RouteComponentProps<any, any, {project: IFirebaseProject}>) => {
就我个人而言,我只想为 location
声明一个类型属性,因为这是 RouteComponentProps
的唯一属性你真正需要的。我不喜欢使用依赖于未使用的泛型的类型。
标的Location
type 来自 history 包,它是 react-router 的依赖项。它的类型通过 import * as H from "history"
导入到 react-router-dom 类型中,所以这就是你看到 H.Location
的原因.但是你可以直接导入它:
import {Location} from "history";
然后像这样使用它:
render={({ location }: {location: Location<{project: IFirebaseProject}>}) => {
render
与 component
您的 CodeSandbox 中发生了一些奇怪的事情,因为我确实看到了错误,但我无法在 TS Playground 中单独重现它。与其用头撞墙,不如使用稍微不同的方法来规避错误。
component
prop 的类型比 render
更宽松因为它允许 Prop 类型为 RouteComponentProps<any>
(我们期望的)或 any
(字面意思是任何东西)。只需将 Prop 名称从 render
切换至 component
让它突然工作!我们不想定义内联组件,因为它将是 recreated on each render , 但我们可以在外部定义它。
我们现在将使用 component
Route
的 Prop 而不是使用 render
功能:
<Route path="/project/:id" component={ProjectScreen} />
有两个选项可以访问 ProjectScreen
中的位置这两者似乎都对我有用。
component
上是允许的而不是 render
由于 any
在 Prop 上打字。const ProjectScreen = ({ location }: { location: Location<{ project: IFirebaseProject }>; }) => {
const { state } = location;
return <ProjectDetails project={state.project} />;
};
useLocation
通过路由器上下文访问它钩。这个钩子(Hook)是依赖于状态的泛型,所以我们可以在调用它的时候指定状态类型。我们定义了一个组件,它不接受任何 Prop 但呈现适当的 ProjectDetails
。基于钩子(Hook)的位置。const ProjectScreen = () => {
const { state } = useLocation<{ project: IFirebaseProject }>();
return <ProjectDetails project={state.project} />;
}
关于typescript - React 路由渲染属性类型挑战 typescript ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66309218/
我想得到 id a b c -------------------- 1 1 100 90 6 2 50 100 ...来自: id a
让我们看看,我有这段将 NFA 自动转换为 DFA 的代码;这是我编写的;我发现了一个“bug”; printf()指令 这意味着像这样“printf("",X); ”以防止出现错误 没有要在屏幕上打
我有一些文本图像,但它们是弯曲的,呈圆形或波浪形。我需要把它们弄直。我尝试使用OCR提取文本,但是它们效率低下,需要直接的图像。 我附上测试图片: 我需要覆盖这两个最小区域。 请建议一些路径或使用
data1=data.frame("StudentID"=c(1,1,1,2,2,2,2,3,3,3,3), "Class"=c(1,1,1,1,1,1,1,2,2,2,2),
我的问题已在 java draw line as the mouse is moved 中提到过然而,我对这本书的了解还不够深入,无法涵盖 JPanels、JFrames 和 Points,正如提出这
这是我上一个问题 here. 的后续问题那里发布的答案实际上不起作用。所以这就是挑战。您将获得以下代码(假设包含 jQuery): $("input").val(**YOUR PHP /
以下是C语言中链表的语法,部分内容 struct tag-name { type member1; type member2; ....... ....... struc
我面临以下挑战性问题: There are a circle of 100 baskets in a room; the baskets are numbered in sequence from 1
我有一个这样的结构: public struct MyStruct { public string Name; public bool Process; } 我有一个这样的
假设我有: var directions = [ "name", "start_address", "end_address", "order_date" ]; 我正在尝试找到一种巧妙、快速的方法来将
我正在用 Javascript 重做 Project Euler 挑战。任务是获取最大的回文数( https://projecteuler.net/problem=4 )。现在我得到以下代码: var
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
第一问:有没有可能有一个不可见的矩形? 问题 2:是否可以在方法上调用方法?见下文。 var canvas = document.getElementById("canvas"); var ctx =
问题: 给定一串数字,计算是任何回文的字谜的子词(一致的子序列)的数量。 例子: 对于输入字符串“02002”,结果应该是 11,即: “0”、“2”、“0”、“0”、“2”、“00”、“020”、“
用户A-用户B-用户C-用户D-用户F 用'-'连接的用户互相认识。 我需要一个算法来完成这两项任务: 计算从UserX到UserY的路径 对于 UserX,计算距离不超过 3 步的所有用户。 有没有
根据我的教授介绍。对于数据库理论,没有任何例子可以说明这种情况何时会出现,考虑到它是理论的特定部分,这似乎有点奇怪。 我正在寻找的只是一个示例关系,它是第 4 范式并且可以执行第 5 范式分解。或者(
给定任务sameEnds来自 CodingBat: 给定一个字符串,返回出现在字符串开头和结尾且不重叠的最长子字符串。例如,sameEnds("abXab") 是 "ab"。 sameEnds("ab
在我的 welcome#index 页面上,有一个按钮可以远程(或者我应该说异步)为 Article 编写新的 Comment ),使用 AJAX。 它工作得很好,只是当使用rails迭代一篇文章时,
希望每个人都有美好的一天。 这是我在 Stackoverflow 上发表的第一篇文章! 我刚刚完成了 Codeacademy 上的 javascript 类(class),并且也阅读了几本相关书籍。现
挑战是删除数字末尾的零。两个数字内的零是可以的。例如: 14000 == 14 //all end zeros removed 10300 == 103 // all end zeros remove
我是一名优秀的程序员,十分优秀!