30/11/2019 使用此处的解决方案更新了代码沙箱。
原始问题在28/11/2019问, 我试图学习高级组件,但努力将高级组件连接到redux存储和路由器。希望有人可以帮助解决我与
mapStateToProps 有关的高阶组件类型编译问题。
我正在尝试创建一个更高阶的组件 withErrorListener 。它具有以下功能:
StateProps = { error: IApiFailure[]}
其意图如下使用NewComponent = withErrorListener(withId(BaseComponent))
。
,我遇到的问题是,打字稿引发编译错误类型 IApiFailure 不能在找到 ErrorListener 特别类,当它被分配给反应,终极版 连接
功能。IApiFailure是mapStateToProps函数的StateProps返回类型中包含的类型。我可以编译的唯一方法是强制转换为 任何
类型。
HoC通过以下代码段连接到商店。HoC ErrorListener类的完整代码可以在这里找到。我还包括以下错误信息…
随后,我无法将连接的组件连接到withRouter函数。如果我将Hoc
ErrorListener转换为connect函数中的任何类型,则编译成功,但OwnProps中的uniqueId属性未定义。这用于过滤错误存储。
/**
* Redux properties
*/
type StateProps = {
error: FailureNotify[];
};
/**
* Function to return subset of store state that filters errors for the wrapped component via uniqueId property
* @param state The root state
* @param ownProps Properties passed to wrapped component according to `https://react-redux.js.org/next/using-react-redux/connect-html" target="_blank">mapstate#ownprops-optional`
* @returns StateProps type that contains a list of filtered errors of type FailureNotify.
*/
const mapStateToProps = (
state: RootState,
ownProps: HocProps
): StateProps => {
console.log(`withErrorListener mapStateToProps => ${ownProps.uniqueId}`);
return {
error: filterErrors(state.errors, ownProps)
};
};
const dispatchProps = {
clearError: clearErrorAction
};
/**
* Type declarations
*/
type TStateProps = ReturnType<typeof mapStateToProps>;
type TDispatchProps = typeof dispatchProps;
type HocProps = BaseProps & TStateProps & TDispatchProps;
const ConnectedHoc = connect<
TStateProps,
TDispatchProps,
ExpectedProps,
RootState
>(
mapStateToProps,
dispatchProps
)(ErrorListener); // this raises the error below...unless I cast it as any
return ConnectedHoc;
// const RouteHoc = withRouter(ConnectedHoc);
// return RouteHoc;
我收到的编译错误如下。我认为打字稿不能识别嵌入型 内 通过mapStateToProps返回的类型,即IApiFailure []类型在无法识别
HocProps 。使用时这不是自动实现的ReturnType<typeof mapStateToProps>
吗?
Argument of type 'typeof ErrorListener' is not assignable to parameter of type 'ComponentType<Matching<StateProps & { clearError: (fromAction: string, fromComponent: string, history?: History<any>, navigateTo?: string) => PayloadAction<constants.CLEAR_ERROR, ClearError>; }, HocProps>>'.
Type 'typeof ErrorListener' is not assignable to type 'ComponentClass<Matching<StateProps & { clearError: (fromAction: string, fromComponent: string, history?: History<any>, navigateTo?: string) => PayloadAction<constants.CLEAR_ERROR, ClearError>; }, HocProps>, any>'.
Types of parameters 'props' and 'props' are incompatible.
Type 'Matching<StateProps & { clearError: (fromAction: string, fromComponent: string, history?: History<any>, navigateTo?: string) => PayloadAction<constants.CLEAR_ERROR, ClearError>; }, HocProps>' is not assignable to type 'Readonly<HocProps>'.
Type 'P extends "error" | "clearError" ? (StateProps & { clearError: (fromAction: string, fromComponent: string, history?: History<any>, navigateTo?: string) => PayloadAction<constants.CLEAR_ERROR, ClearError>; })[P] extends HocProps[P] ? HocProps[P] : (StateProps & { ...; })[P] : HocProps[P]' is not assignable to type 'HocProps[P]'.
Type 'HocProps[P] | ((StateProps & { clearError: (fromAction: string, fromComponent: string, history?: History<any>, navigateTo?: string) => PayloadAction<constants.CLEAR_ERROR, ClearError>; })[P] extends HocProps[P] ? HocProps[P] : (StateProps & { ...; })[P])' is not assignable to type 'HocProps[P]'.
Type '(StateProps & { clearError: (fromAction: string, fromComponent: string, history?: History<any>, navigateTo?: string) => PayloadAction<constants.CLEAR_ERROR, ClearError>; })[P] extends HocProps[P] ? HocProps[P] : (StateProps & { ...; })[P]' is not assignable to type 'HocProps[P]'.
Type '(StateProps & { clearError: (fromAction: string, fromComponent: string, history?: History<any>, navigateTo?: string) => PayloadAction<constants.CLEAR_ERROR, ClearError>; })[P] | HocProps[P]' is not assignable to type 'HocProps[P]'.
Type '(StateProps & { clearError: (fromAction: string, fromComponent: string, history?: History<any>, navigateTo?: string) => PayloadAction<constants.CLEAR_ERROR, ClearError>; })[P]' is not assignable to type 'HocProps[P]'.
Type 'StateProps & { clearError: (fromAction: string, fromComponent: string, history?: History<any>, navigateTo?: string) => PayloadAction<constants.CLEAR_ERROR, ClearError>; }' is not assignable to type 'HocProps'.
Type 'StateProps & { clearError: (fromAction: string, fromComponent: string, history?: History<any>, navigateTo?: string) => PayloadAction<constants.CLEAR_ERROR, ClearError>; }' is not assignable to type 'BaseProps'.
Type '(FailureNotify[] extends HocProps["error"] ? HocProps["error"] : FailureNotify[]) | ((fromAction: string, fromComponent: string, history?: History<any>, navigateTo?: string) => PayloadAction<...> extends HocProps["clearError"] ? HocProps["clearError"] : (fromAction: string, fromComponent: string, history?: History<....' is not assignable to type 'HocProps[P]'.
Type 'FailureNotify[] extends HocProps["error"] ? HocProps["error"] : FailureNotify[]' is not assignable to type 'HocProps[P]'.
Type 'FailureNotify[] | HocProps["error"]' is not assignable to type 'HocProps[P]'.
Type 'FailureNotify[]' is not assignable to type 'HocProps[P]'.ts(2345)
当你使用注射道具mapStateToProps
,并dispatchProps
在connect
您必须减去从这些道具BaseProps
使用泛型类型Diff
的辅助型。此外,如果要在Hoc
组件中使用这些注入的Props,则必须将它们作为Componenttype参数传递。例如React.Component<InjectedProps>
。
这是错误的原因。
因此,在您的示例中,道具是:
type InjectedProps = TStateProps & TDispatchProps;
type HocProps = Diff<BaseProps, InjectedProps>;
class Hoc extends React.Component<InjectedProps> { ... }
const ConnectedHoc = connect<
TStateProps,
TDispatchProps,
HocProps,
RootState
>(
mapStateToProps,
dispatchProps
)(Hoc);
另外,请检查react-redux-typescript-guide中的相同讨论
我的问题是:用“async”定义一个返回“promise”的函数(形式上)正确吗?是否容易出现“内存泄漏”? 对于那些喜欢用自然语言阅读我用js发布的内容的人。 我正在给一个知道JS是如何真正实现的人打电话,然后知道引擎是如何管理我提出的场景的:我们应该避免对返回“promise”的函数使用“async”吗? 我提出的问题不会改变任何人的生活,最终也不会影响表演。事实是,在编写代码时,我喜欢关注代
Boost.Bind Bind是对标准库的绑定器bind1st 和 bind2nd的泛化。这个库支持使用统一的语法将参数绑定到任何类似于函数行为的东西,如函数指针、函数对象,以及成员函数指针。它还可以通过嵌套绑定器实现函数组合。这个库不要求那些对标准库绑定器的强制约束,最显著的就是不要求你的类提供typedefs result_type, first_argument_type, 和 second
在函数式编程中,我们可以将函数当作变量一样自由使用。一个函数接收另一个函数作为参数,这种函数称之为高阶函数(Higher-order Functions)。 看一个简单的例子: def func(g, arr): return [g(x) for x in arr] 上面的代码中,func 是一个高阶函数,它接收两个参数,第 1 个参数是函数,第 2 个参数是数组,func 的功能是将函数
我们已经看到,函数实际上是描述复合操作的抽象,这些操作不依赖于它们的参数值。在中, 我们不会谈论特定数值的平方,而是一个获得任何数值平方的方法。当然,我们可以不定义这个函数来使用它,通过始终编写这样的表达式: >>> 3 * 3 9 >>> 5 * 5 25 并且永远不会显式提及square。这种实践适合类似square的简单操作。但是对于更加复杂的操作会变得困难。通常,缺少函数定义会对我们非常不
本文向大家介绍python进阶教程之函数对象(函数也是对象),包括了python进阶教程之函数对象(函数也是对象)的使用技巧和注意事项,需要的朋友参考一下 秉承着一切皆对象的理念,我们再次回头来看函数(function)。函数也是一个对象,具有属性(可以使用dir()查询)。作为对象,它还可以赋值给其它对象名,或者作为参数传递。 lambda函数 在展开之前,我们先提一下lambda函数。可以利用
错误:我什么设置useState输入函数组件,在事件填充setText...,而不是传递数据在app.jsFali和填充在useState,那么这将呈现组件与新数据,但获取错误 对象不是函数或其返回值不可迭代 当我写入以下命令时,会出现该错误: const[text, setText]=useSate(") const[day, setDay]=useSate(") const[其余,setRem