this.getAccount()
没有从获取中返回 json ?。 getAccount () {
fetch('http://192.168.1.2:3000/account', {
method: 'POST'
}).then(function ($) {
return $.json()
}).then(function ($) {
return $
})
}
render () {
return (
<div>
{
this.getAccount()
}
</div>
)
}