我正在学习ReactJS,我正在学习本教程: https://stormpath.com/blog/build-a-react-app-with-user-authentication
我没有问题,一切正常。 Howether,我正在尝试做一些修改,而我现在遇到的问题只是显示当前的用户名。
在阅读stormpath doc时,我看到我能做到这一点:
import React from 'react';
import { Link } from 'react-router';
import { LoginLink, LogoutLink, Authenticated, NotAuthenticated } from 'react-stormpath';
class UserExample extends React.Component {
static contextTypes = {
user: React.PropTypes.object
};
render() {
return (
<p>
Hello {this.context.user.givenName}!
</p>
);
}
}
但似乎我对“this.context.user.givenName”有错误,它告诉我不会导出上下文。我真的不知道该做什么,甚至不知道我错过了什么。有人为此得到了解决方案吗?
提前致谢。