Symfony 4如何使用React设置SPA(单页面应用程序)?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Symfony 4如何使用React设置SPA(单页面应用程序)?相关的知识,希望对你有一定的参考价值。
我无法让SPA设置中的Symfony 4正常工作。
具体来说,当我使用React-router链接导航时,一切正常。
但是,如果我尝试直接访问任何路由(家庭除外),Symfony会拦截它,当然,会为未找到的路由引发错误。
将Symfony放在子域中并仅将其用作API的替代方法是不可行的,因为我需要框架提供的所有用户和会话管理工具。
当然,对于后端的所有API调用,我都需要Symfony的路由。
我正在使用Symfony 4的默认目录结构,只在顶层为所有react / redux代码添加目录/客户端。
构建代码放在/ public / build下。
我也尝试使用下面的代码在/ public上放置.htaccess文件,但这没有帮助。
Options -MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]
谢谢
答案
可以遵循解决方案。
具有路径注释的控制器,无论路径可能具有多少参数,所有路线都将通过与此注释作出反应来处理:
namespace AppController;
use SensioBundleFrameworkExtraBundleConfigurationTemplate;
use SymfonyBundleFrameworkBundleControllerController;
use SymfonyComponentRoutingAnnotationRoute;
class DefaultController extends Controller
{
/**
* @Template("default/index.html.twig")
* @Route("/{reactRouting}", name="index", requirements={"reactRouting"=".+"}, defaults={"reactRouting": null})
*/
public function index()
{
return [];
}
}
如果你有不应该通过react处理的路由,你的注释可以像下面这样排除它们 - 所有以api开头的路由都不会被react处理:
@Route("/{reactRouting}", name="index", requirements={"reactRouting"="^(?!api).+"}, defaults={"reactRouting": null})
树枝模板,带根元素:
{% extends 'base.html.twig' %}
{% block stylesheets %}
<link rel="stylesheet" href="{{ asset('build/js/app.css') }}">
{% endblock %}
{% block body %}
<div id="root"><div>
{% endblock %}
{% block javascripts %}
<script type="text/javascript" src="{{ asset('build/js/app.js') }}"></script>
{% endblock %}
反应索引文件:
import React from 'react';
import ReactDOM from 'react-dom';
import {BrowserRouter, Route, Switch} from 'react-router-dom';
import Home from "./containers/Home";
import AboutUs from "./containers/AboutUs";
ReactDOM.render(
<BrowserRouter>
<Switch>
<Route path="/" component={Home}/>
<Route path="/about-us" component={AboutUs}/>
</Switch>
</BrowserRouter>,
document.getElementById('root'));
而我的安可配置:
var Encore = require('@symfony/webpack-encore');
Encore
// the project directory where compiled assets will be stored
.setOutputPath('public/build/')
// the public path used by the web server to access the previous directory
.setPublicPath('/build')
.cleanupOutputBeforeBuild()
.enableSourceMaps(!Encore.isProduction())
// uncomment to create hashed filenames (e.g. app.abc123.css)
// .enableVersioning(Encore.isProduction())
// uncomment to define the assets of the project
// .addEntry('js/app', './assets/js/app.js')
// .addStyleEntry('css/app', './assets/css/app.scss')
// uncomment if you use Sass/SCSS files
// .enableSassLoader()
// uncomment for legacy applications that require $/jQuery as a global variable
// .autoProvidejQuery()
.enableReactPreset()
.addEntry('js/app', './react/index.js')
.configureBabel((config) => {
config.presets.push('stage-1');
})
;
module.exports = Encore.getWebpackConfig();
另一答案
我相信我找到了可能的设置。
在Symfony的routes.yaml中包含react-router路由,它们都指向生成React根组件的同一个控制器。
所有其他路由(如API调用)都将正常设置。
//config/routes.yaml
//all routes handled by PWA(react-router) pointing to same controller
home:
path: /
controller: AppControllerIndexController::index
account:
path: /account
controller: AppControllerIndexController::index
如果有人知道其他设置,请分享。
以上是关于Symfony 4如何使用React设置SPA(单页面应用程序)?的主要内容,如果未能解决你的问题,请参考以下文章