Questions tagged «url-redirection»

5
如何使用POST动词重定向到页面?
在RedirectToAction控制器内调用时,它会使用HTTP GET自动重定向。如何明确告诉它使用HTTP POST? 我有一个既可以接受GET请求也可以接受POST请求的操作,并且我希望能够RedirectToAction使用POST并将其发送一些值。 像这样: this.RedirectToAction( "actionname", new RouteValueDictionary(new { someValue = 2, anotherValue = "text" }) ); 我希望someValue和anotherValue值使用HTTP POST而不是GET发送。有谁知道如何做到这一点?

11
如何在React Router中将DefaultRoute设置为另一个路由
我有以下内容: <Route name="app" path="/" handler={App}> <Route name="dashboards" path="dashboards" handler={Dashboard}> <Route name="exploreDashboard" path="exploreDashboard" handler={ExploreDashboard} /> <Route name="searchDashboard" path="searchDashboard" handler={SearchDashboard} /> <DefaultRoute handler={DashboardExplain} /> </Route> <DefaultRoute handler={SearchDashboard} /> </Route> 使用DefaultRoute时,由于任何* Dashboard需要在Dashboard中呈现,因此SearchDashboard呈现不正确。 我想在“应用”路由内将DefaultRoute指向路由“ searchDashboard”。这是我可以使用React Router进行的操作,还是应该为此使用常规Javascript(用于页面重定向)? 基本上,如果用户转到主页,我想将其发送给搜索仪表板。所以我想我正在寻找一个等效于React Router的功能window.location.replace("mygreathostname.com/#/dashboards/searchDashboard");

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.