2016-03-30 10 views

答えて

0

あなたのajaxコールバックでwindow.location.hrefを変更して、ブラウザを新しいURLにリダイレクトすることができます。

0

私はReact with React-routesをよく使っていません。しかし、あなたはJSバージョンを使用することができます。 LINK

から

// similar behavior as an HTTP redirect 
window.location.replace("http://stackoverflow.com"); 

// similar behavior as clicking on a link 
window.location.href = "http://stackoverflow.com"; 

ソース

関連する問題