属性“ _didFocusSubscription”在类型上不存在

时间:2019-10-02 08:41:38

标签: javascript typescript react-native set

在本机反应中,我正在将javascript更改为打字稿。

componentDidMount = () => {
        this._didFocusSubscription = this.props.navigation.addListener(
            'didFocus',
            payload => {
                this.barcodeRead = false
                firebase.analytics().setCurrentScreen('BrokenDeers');
            }
        );

this._didFocusSubscripttion处有错误。 错误在这里。

Property '_didFocusSubscription' does not exist on type 'Settings'.ts(2339

我该怎么办?

什么是有效载荷类型?

0 个答案:

没有答案