0
私はAPIから取得したデータをREACTの別のコンポーネントに送信しようとしていますが、どうすればよいですか?私は "小道具"を試しましたが、私はまだ初心者で、他のコンポーネントにデータを渡す方法はありません。<h2> John Doe </ h2>
の "user.jsx"のコードでわかるように、何かアドバイス、 "usuario" APIから来てくださいAPIからのデータの再利用| React
api.jsx
import React from 'react'
import MenuProfile from './user.jsx'
export default class Cliente extends React.Component {
constructor() {
super()
this.state = { clientId: '', usuario: '' }
}
componentWillMount() {
fetch('MYURL', {
method: 'POST',
body: JSON.stringify({
usuario: 'test',
password: 'test',
})
})
.then((response) => {
return response.json()
})
.then((data) => {
this.setState({ clientId: data.clientId, usuario: data.usuario })
})
}
render() {
return (
// Testing if the state prints with success
<div className="container-fluid">
<div>{this.state.usuario}</div> <---- this data (name)
</div>
);
}
}
user.jsx
import React from 'react';
import Cliente from './api.jsx'
export default class MenuProfile extends React.Component {
render() {
console.log();
return (
<div className="profile">
<div className="profile_pic">
<img src="../assets/images/img.jpg" alt="..." className="img-circle profile_img"></img>
</div>
<div className="profile_info">
<span>Welcome,</span>
<h2>Jhon Doe</h2> <---- insert here (from api.jsx)
</div>
</div>
);
}
}
「./user.jsx」からリアクトそれを抽象化するためのlib。それがあなたにとって有用かどうかを見てください! https://github.com/DigitalGlobe/jetset – glortho