第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

為什么我的文本在 React 中將文本寫入輸入標記時沒有更改

為什么我的文本在 React 中將文本寫入輸入標記時沒有更改

catspeake 2022-08-18 10:49:17
我的代碼從應用程序.js。這個想法是,當您在輸入中輸入文本時,屏幕應相應地更新。由于某種原因,設(shè)置狀態(tài)不起作用,我不知道為什么。import React, { Component } from 'react';import UserOutput from './Components/UserOutput';import UserInput from './Components/UserInput';class App extends Component {  state = {    username: 'Adib',  };  changeUsername = (event) => {    this.setState({      username: event.target.value,    });  };  render() {    return (      <div className="App">        <UserInput changed={this.changeUsername} />        <UserOutput name={this.state.username} />      </div>    );  }}export default App;我的代碼來自用戶輸出.jsimport React from 'react';const userOutput = (props) => {  return (    <div>      <p>Username: {props.name}</p>      <p>Hello {props.name}</p>    </div>  );};export default userOutput;我的代碼來自用戶輸入.jsimport React from 'react';const userInput = (props) => {  return <input type="text" onChanged={props.changed} />;};export default userInput;
查看完整描述

2 回答

?
手掌心

TA貢獻1942條經(jīng)驗 獲得超3個贊

你的組件正在使用一個在 React 中不是有效事件的事件,請嘗試使用。UserInputonChangedonChange


import React from 'react';


const userInput = (props) => {

  return <input type="text" onChange={props.changed} />;

};


export default userInput;


查看完整回答
反對 回復 2022-08-18
?
慕姐4208626

TA貢獻1852條經(jīng)驗 獲得超7個贊

您正在使用組件中輸入字段上的事件操作的名稱。將其替換為onChangeduserInput

return <input type="text" onChange={props.changed} />;


查看完整回答
反對 回復 2022-08-18
  • 2 回答
  • 0 關(guān)注
  • 114 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號