Parsing error: Unexpected token, expected ","
250 | }
251 |
> 252 | renderField(fieldName: keyof ClientConfigsProps) {
Вот, чтобы не игнорили я сделал пример в песочнице) https://codesandbox.io/s/cool-dust-w9cty?file=/src/App.tsx как правильно исправить строку renderField(key: string extends keyof FieldsProps) {? Показывает ошибку: ```expected "?"``` Вот код если в песочницу не хочется лезть interface FieldsProps { a: string; b: string; cFunc: () => string; } interface AppState { fields: FieldsProps; } class App extends React.Component<{}, AppState> { constructor(props: {}) { super(props); this.state = { fields: { a: "bar", b: "foo", cFunc: () => "Rendered cFunc var" } }; this.renderField = this.renderField.bind(this); } renderField(key: string extends keyof FieldsProps) { const val = this.state.fields[key]; return ( <label> {key} <input type="text" value={val} /> </label> ); } render() { const { fields } = this.state; return <>{Object.keys(fields).map(this.renderField)}</>; } } export default App;
renderField<K extends keyof FieldsProps>(key: K) {
Обсуждают сегодня