使用状态与 TypeScript react

IT技术 javascript reactjs
2021-03-23 09:16:46

我是 TypeScript 的新手。我在渲染方法中显示 this.state.something 或将其分配给函数中的变量时遇到问题。

看一下最重要的一段代码:

interface State {
    playOrPause?: string;
}

class Player extends React.Component {
    constructor() {
        super();

        this.state = {
            playOrPause: 'Play'
        };
    }

    render() {
        return(
            <div>
                <button
                    ref={playPause => this.playPause = playPause}
                    title={this.state.playOrPause} // in this line I get an error
                    >
                    Play
                </button>
           </div>
        );
    }
}

错误说:“[ts] 属性 'playOrPause' 在类型 'ReadOnly<{}>' 上不存在。

我试图将 playOrPause 属性声明为一种字符串,但它不起作用。我在这里缺少什么才能使它工作?

4个回答

您需要声明您的组件正在使用 State 接口,它由 Typescript 的泛型使用。

interface IProps {
}

interface IState {
  playOrPause?: string;
}

class Player extends React.Component<IProps, IState> {
  // ------------------------------------------^
  constructor(props: IProps) {
    super(props);

    this.state = {
      playOrPause: 'Play'
    };
  }

  render() {
    return(
      <div>
        <button
          ref={playPause => this.playPause = playPause}
          title={this.state.playOrPause} // in this line I get an error
        >
          Play
        </button>
      </div>
    );
  }
}
谢谢。它现在有效。我试图仅声明 IState 接口并声明该类 Player 仅使用 IState(当时它仍然不起作用)但是当我将名为 IProps 的空接口与 IState 一起声明时,它可以正常工作。这是为什么?
2021-05-26 09:16:46
如果状态是在构造函数之外声明的,state = { playOrPause: 'Play' }typescript不会针对IState. 为什么会这样?
2021-06-01 09:16:46
如何在构造函数之外?
2021-06-04 09:16:46
@RahulYadav 如果你这样做,你可以这样做state: IState = {...}并将它从通用道具中删除。它会被推断出来。
2021-06-07 09:16:46
泛型位置有一个含义,第一个位置应该表示props类型,第二个是状态。
2021-06-17 09:16:46

如果有人想知道如何使用钩子实现它:

const [value, setValue] = useState<number>(0);

useState 是一个泛型函数,这意味着它可以接受一个类型参数。这个类型参数将告诉 TypeScript 哪些类型可以接受这种状态。

Hooks 只能在功能组件中使用
2021-05-28 09:16:46
正如我在回答中所说,万一有人想知道......
2021-05-29 09:16:46
这仅对 react 中的函数有效,对类无效。我已经吸取了这个惨痛的教训。
2021-06-15 09:16:46
根据问题不适用于基于类的组件。
2021-06-16 09:16:46

在我的情况下(使用 TypeScript,状态值实际上是一个布尔值)我遇到了同样的问题,我通过将我想标记为输出的状态值传递给 String() 来修复它:

import React, { Component } from 'react';

interface ITestProps {
  name: string;
}

interface ITestState {
  toggle: boolean;
}

class Test extends Component<ITestProps, ITestState> {
  constructor(props: ITestProps) {
    super(props);

    this.state = {
      toggle: false,
    };

    this.onClick = this.onClick.bind(this);
  }

  onClick() {
    this.setState((previousState, props) => ({
      toggle: !previousState.toggle,
    }));
  }

  render() {
    return (
      <div>
        Hello, {this.props.name}!
        <br />
        Toggle state is: {String(this.state.toggle)}
      </div>
    )
  }
}

只需使用属性、类型声明接口或类型,并将其注释为状态。?平均可选:

interface ITestProps {}

interface ITestState {
  playOrPause?: string;
}

class Player extends React.Component<ITestProps, ITestState> {

  state = {
     playOrPause: 'Play'
  };
  

  render() {
    return // your code here
}

如果您需要相同的状态将其传递给您只需要创建文件的子组件,您可以根据需要为上面的接口添加更多值.d.ts,您应该很高兴!

有什么区别?两个片段都引用 React.Component 类
2021-06-15 09:16:46
这是错误的。你的代码和他的代码一样。正确做法:class Test extends Component<ITestProps, ITestState> {
2021-06-18 09:16:46