49

我正在开发一个使用 TypeScript 和 React 的项目,而且我对这两者都是新手。我的问题是关于 TypeScript 中的界面以及它与道具和状态的关系。实际发生了什么?除非我声明接口道具和状态,否则我的应用程序根本不会运行,但是我通过 React 构造函数使用状态,并且我已经看到了所有这些信息都将进入“接口 MyProps”或“接口 MyStates”的示例. 以这段代码为例:

"use strict";

import * as React from 'react'
import NavBar from './components/navbar.tsx'
import Jumbotron from './components/jumbotron.tsx';
import ContentPanel from './components/contentPanel.tsx';
import Footer from './components/footer.tsx';

interface MyProps {}
interface MyState {}
class Root extends React.Component <MyProps, MyState>  {
  constructor(props) {
    super(props);
    this.state = {
      ///some stuff in here
  
    };
  }
  render() {
    return (
      <div>
        <NavBar/>
        <Jumbotron content={this.state.hero}/>
        <ContentPanel content={this.state.whatIs}/>
        <ContentPanel content={this.state.aboutOne}/>
        <ContentPanel content={this.state.aboutTwo}/>
        <ContentPanel content={this.state.testimonial}/>
        <Footer content={this.state.footer}/>
      </div>
    )
  }
}
export default Root;

(我删除了 this.state 中的内容只是为了在此处发布)。为什么需要接口?这样做的正确方法是什么,因为我认为我是以 JSX 方式而不是 TSX 方式来考虑的。

4

1 回答 1

55

目前尚不清楚您到底在问什么,但是:

props:是从组件的父组件传递的键/值对,组件不应更改它自己的 props,只对父组件的 props 更改做出反应。

state:有点像 props,但它们在组件本身中使用该setState方法进行了更改。

render当道具或状态发生变化时调用该方法。

至于打字稿部分,React.Component需要两种类型作为泛型,一种用于道具,一种用于状态,您的示例应该看起来更像:

interface MyProps {}

interface MyState {
    hero: string;
    whatIs: string;
    aboutOne: string;
    aboutTwo: string;
    testimonial: string;
    footer: string;
}

class Root extends React.Component <MyProps, MyState>  {
    constructor(props) {
        super(props);

        this.state = {
            // populate state fields according to props fields
        };
    }

    render() {
        return (
            <div>
                <NavBar/>
                <Jumbotron content={ this.state.hero } />
                <ContentPanel content={ this.state.whatIs } />
                <ContentPanel content={ this.state.aboutOne } />
                <ContentPanel content={ this.state.aboutTwo } />
                <ContentPanel content={ this.state.testimonial } />
                <Footer content={ this.state.footer } />
            </div>
        )
    }
}

如您所见,MyState接口定义了稍后在组件this.state成员中使用的字段(我将它们全部设为字符串,但它们可以是您想要的任何东西)。

我不确定这些字段是否真的需要处于状态而不是道具中,但这就是你要做的。

于 2016-04-20T13:30:04.263 回答