- Why
this.getAccount()
doesn't return my json from fetch?. - With callback this.getAccount(function ($) { return $ }) still doesn't work.
React Component
getAccount () {
fetch('http://192.168.1.2:3000/account', {
method: 'POST'
}).then(function ($) {
return $.json()
}).then(function ($) {
return $
})
}
render () {
return (
<div>
{
this.getAccount()
}
</div>
)
}