Ajax からのログインに成功した後、別のコンポーネントまたはモジュールをロードしたいプロジェクトに取り組んでいます。
$.ajax({
url: url_root+"/auth/token",
dataType: 'json',
type: method.post,
data: data,
success: function(data) {
console.log(data);
// redirect... to another page
}.bind(this),
error: function(xhr, status, err) {
console.error(status);
this.setState({username : true, password :true});
}.bind(this)
});