私は反応して、liをulに動的に追加しようとしています。 私の李の中に私はonclickメソッドでsapnを持っています。スパンをクリックすると特定のメソッドを起動したいが、取得する - 未知のReferenceError:deleteMsgはHTMLSpanElement.onclickで定義されていない。私は解決策を探したが、何も働かなかった。私はこれが私のコードです...問題が何であるかをJqueryのonClick関数は、リアクションでは定義されていません。
を理解していない:
class CoachPage extends React.Component {
constructor(props, context) {
super(props, context);
this.state={
val: []
}
}
handleSend(msg){
this.state.val.push(msg);
this.setState({val: []});
}
// get all data from db and put in the list
componentWillMount(){
fetch('http://localhost:3003/api/msgs/')
.then(function(res) {
return res.json();
}).then(function(data){
var msgs = [data];
msgs[0].map(function(msg){
console.log(msg.msgdata);
//Here i add the li's with a sapn and onclick method called "deleteMsg"
$('#coach-panel-content').append(
(`<li class=myli>${msg.msgdata}<span onclick=deleteMsg('${msg._id}')>X</span></li><hr>`));
})
})
.catch(function(error) {
console.log(error)
});
}
deleteMsg(item){
return fetch('http://localhost:3003/api/msgs/' + item, {
method: 'delete'
}).then(response =>
response.json().then(json => {
return json;
})
);
}
render() {
return (
<div className="container" style={{color: '#FFF', textAlign: 'right'}}>
<h1>Coach Page</h1>
<AddMsg onSend={this.handleSend.bind(this)} />
<Panel header="עדכונים" bsStyle="info" style={{float: 'left', textAlign: 'right', width: '40em'}}>
<ul id="coach-panel-content">
</ul>
</Panel>
</div>
);
}
}
export default CoachPage;
UPDATE:
私はすべての変更を行っ@sandor VASASは言った、私はしませんでした今まで気づいていましたが、新しいmsgを追加しようとすると、このエラーが発生します: "Uncaught ReferenceError:valが定義されていません"。私は、これは私の更新されたコードである ...それが起こるのである理由私は理解していない:
class CoachPage extends React.Component {
constructor(props, context) {
super(props, context);
this.state={
val: []
}
}
handleSend(msg){
this.state.val.push(msg);
this.setState({val});
}
// get all data from db and put in the list
componentDidMount(){
fetch('http://localhost:3003/api/msgs/')
.then(res => res.json())
.then(data => this.setState({ val: data }))
.catch(console.error);
}
deleteMsg(item){
return fetch('http://localhost:3003/api/msgs/' + item, {
method: 'DELETE'
}).then(response =>
response.json()
.then(json => {
return json;
})
);
}
render() {
return (
<div className="container" style={{color: '#FFF', textAlign: 'right'}}>
<h1>Coach Page</h1>
<AddMsg onSend={this.handleSend.bind(this)}/>
<Panel header="עדכונים" bsStyle="info" style={{float: 'left', textAlign: 'right', width: '40em'}}>
<ul id="coach-panel-content">
{
this.state.val.map((msg, index) =>
<li key={index} className='myli'>
{msg.msgdata}
<span onClick={() => this.deleteMsg(msg._id)}>X</span>
<hr/>
</li>
)
}
</ul>
</Panel>
</div>
);
}
}
export default CoachPage;