How to use React Router with Laravel?(如何在 Laravel 中使用 React Router?)
问题描述
我需要在 Laravel
项目中使用 React Router
.
I needing use React Router
with a Laravel
project.
但是当我在 React Router
上创建路由器并尝试访问时,Laravel
指责路由不存在错误.
But when I create router on the React Router
and try access, Laravel
accuse Route not exist error.
如何使用 React Router
来管理 Laravel 项目路由?
How to can I use React Router
to manager Laravel project routes?
render((
<Router history={browserHistory}>
<Route path="/" component={App}/>
<Route path="/profile" component={Profile}/> // this route I trying access
</Router>
), document.getElementById('root'));
推荐答案
创建一个将所有内容映射到一个控制器的路由,如下所示:
Create a route that maps everything to one controller, like so:
Route::get('/{path?}', [
'uses' => 'ReactController@show',
'as' => 'react',
'where' => ['path' => '.*']
]);
然后在您的控制器中,只显示包含 react 根文档的 HTML 页面:
Then in your controller, just show the HTML page that contains the react root document:
class ReactController extends Controller {
public function show () {
return view('react');
}
}
然后用反应路由器做一切正常的事情.似乎对我来说效果很好.
Then do everything as normal with react router. Seems to work well for me.
Laravel 5.5 更新如果你的控制器只返回一个视图(如上面的例子),你可以在你的路由文件中用这个替换上面的所有代码:
Update for Laravel 5.5 If your controller only returns a view (like in the example above), you can replace all of the above code with this in your routes file:
Route::view('/{path?}', 'path.to.view')
->where('path', '.*')
->name('react');
这篇关于如何在 Laravel 中使用 React Router?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 Laravel 中使用 React Router?
基础教程推荐
- HTTP 与 FTP 上传 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 使用 PDO 转义列名 2021-01-01