-1

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)
});
4

2 に答える 2

1

これには ReactRouter を使用します。https://github.com/rackt/react-router

于 2015-09-23T15:10:45.190 に答える