ChatGPT解决这个技术问题 Extra ChatGPT

类型“只读<{}>”上不存在属性“值”

我需要创建一个表单,该表单将根据 API 的返回值显示某些内容。我正在使用以下代码:

class App extends React.Component {
  constructor(props) {
    super(props);
    this.state = {value: ''};

    this.handleChange = this.handleChange.bind(this);
    this.handleSubmit = this.handleSubmit.bind(this);
  }

  handleChange(event) {
    this.setState({value: event.target.value});
  }

  handleSubmit(event) {
    alert('A name was submitted: ' + this.state.value); //error here
    event.preventDefault();
  }

  render() {
    return (
      <form onSubmit={this.handleSubmit}>
        <label>
          Name:
          <input type="text" value={this.state.value} onChange={this.handleChange} /> // error here
        </label>
        <input type="submit" value="Submit" />
      </form>
    );
  }
}

我收到以下错误:

error TS2339: Property 'value' does not exist on type 'Readonly<{}>'.

我在评论代码的两行中遇到了这个错误。这段代码甚至不是我的,我是从 react 官方网站 (https://reactjs.org/docs/forms.html) 获得的,但它在这里不起作用。

我正在使用 create-react-app 工具。

您的问题出在其他地方 - 请参阅 This demo
我知道,它在所有这些“编译器”网站上工作,但他们建议我用它来做项目 github.com/Microsoft/TypeScript-React-Starter,并且通过 TypeScript 编译器,它不起作用

N
Nitzan Tomer

Component is defined 像这样:

interface Component<P = {}, S = {}> extends ComponentLifecycle<P, S> { }

这意味着状态(和道具)的默认类型是:{}
如果您希望您的组件在状态中有 value,那么您需要像这样定义它:

class App extends React.Component<{}, { value: string }> {
    ...
}

或者:

type MyProps = { ... };
type MyState = { value: string };
class App extends React.Component<MyProps, MyState> {
    ...
}

天哪,老兄,它现在起作用了,再回答我一件事,这种语法与 TypeScript 有关,对吧?因为在反应官方网站它没有类似的东西
是的,这与打字稿严格相关。
正确的定义是:class Square extends React.Component<{ value: string }, { }> { ... }
@NitzanTomer - 你拯救了我的一天
L
Leo
interface MyProps {
  ...
}

interface MyState {
  value: string
}

class App extends React.Component<MyProps, MyState> {
  ...
}

// Or with hooks, something like

const App = ({}: MyProps) => {
  const [value, setValue] = useState<string>('');
  ...
};

type 就像在@nitzan-tomer 的回答中一样,只要您保持一致即可。


请总结在您的帖子上下文中一致的含义,以便无需阅读中篇文章(这是一个非常有用的链接,谢谢)就可以充分发挥其价值。
S
Siphenathi

如果你不想传递接口状态或道具模型,你可以试试这个

class App extends React.Component <any, any>

A
Aravin

我建议使用

仅用于字符串状态值

export default class Home extends React.Component<{}, { [key: string]: string }> { }

对于字符串键和任何类型的状态值

export default class Home extends React.Component<{}, { [key: string]: any}> { }

对于任何键/任何值

export default class Home extends React.Component<{}, { [key: any]: any}> {}

M
Minuka ArTy Weerathunga

问题是你没有声明你的接口状态用你合适的“值”变量类型替换

Here is a good reference

interface AppProps {
   //code related to your props goes here
}

interface AppState {
   value: any
}

class App extends React.Component<AppProps, AppState> {
  // ...
}

M
Mselmi Ali

根据官方 ReactJs 文档,您需要以默认格式传递参数:

P = {} // default for your props
S = {} // default for yout state

interface Component<P = {}, S = {}> extends ComponentLifecycle<P, S> { }

或定义您自己的类型,如下所示:(只是一个 exp)

interface IProps {
    clients: Readonly<IClientModel[]>;

    onSubmit: (data: IClientModel) => void;
}

interface IState {
   clients: Readonly<IClientModel[]>;
   loading: boolean;
}

class ClientsPage extends React.Component<IProps, IState> {
  // ...
}

typescript and react whats react component P S mean

how to statically type react components with typescript


a
apokryfos

event.target 属于 EventTarget 类型,它并不总是有值。如果它是一个 DOM 元素,则需要将其转换为正确的类型:

handleChange(event) {
    this.setState({value: (event.target as HTMLInputElement).value});
}

这将推断状态变量的“正确”类型,尽管明确可能更好


我认为他在尝试初始化构造函数中的字符串时遇到错误,而不是事件处理程序
B
Bogdan P.

我的解决方案

    import React, { ChangeEvent, FormEvent } from "react";
    
    interface NameFormProps {
    }
    
    interface NameFormState {
      value: string
    }
    
    export default class NameForm extends React.Component<NameFormProps, NameFormState> {
      constructor(props: any) {
        super(props);
        this.state = {value: ''};
    
        this.handleChange = this.handleChange.bind(this);
        this.handleSubmit = this.handleSubmit.bind(this);
      }
    
      handleChange(event: ChangeEvent<HTMLInputElement>) {
        this.setState({value: event.target.value});
    }
    
      handleSubmit(event: FormEvent<HTMLFormElement>) {
        alert('A name was submitted: ' + this.state.value);
        event.preventDefault();
      }
    
      render() {
        return (
          <form onSubmit={this.handleSubmit}>
            <label>
              Name:
              <input type="text" value={this.state.value} onChange={this.handleChange} />
            </label>
            <input type="submit" value="Submit" />
          </form>
        );
      }
    }

正如目前所写的那样,您的答案尚不清楚。请edit添加其他详细信息,以帮助其他人了解这如何解决所提出的问题。您可以找到有关如何写出好答案的更多信息in the help center