我无法 FOSJsRoutingBundle 与 Symfony Flex,Webpack 和 AngularJS 一起使用。
我已经在Symfony 3和AngularJS中使用此捆绑包很长时间了,从来没有问题,但是随着Symfony Flex中webpack的引入,设置变得更加复杂。不幸的是,有关FOSJsRoutingBundle 2.2版的文档尚不清楚。
您可以找到此捆绑包here的当前文档。
我正在使用 FOSJsRoutingBundle ,以便我的Angular HTTP请求可以使用生成的路由而不是绝对URL。
我已按照作曲家的说明设置了此捆绑包。然后将路由转储到位于code/assets/fos_js_routes.json
的json文件中。此文件中生成的路由是有效的,并且我希望看到它。
当我使用Angular时,我想在一个单独的文件中进行路由的初始必需声明,以便所有Angular控制器都可以使用Routing.
,而不必在这些文件中进行任何进一步的工作。 / p>
FOS设置文件 /code/assets/js/fos_js_router.js
(Following documentation)
const routes = require('../../assets/fos_js_routes.json');
import Routing from '../../vendor/friendsofsymfony/jsrouting-bundle/Resources/public/js/router.min.js';
Routing.setRoutingData(routes);
示例角度文件 /code/assets/js/apps/default/controller/test.js
(function () {
'use strict';
angular.module('test')
.controller(
'TestCtrl',
['$scope', '$http',
function ($scope, $http) {
let url = Routing.generate('test_route_name');
}
])
});
Webpack配置
var Encore = require('@symfony/webpack-encore');
Encore
.setOutputPath('public/build/')
.setPublicPath('/build')
.addEntry('app', './assets/js/app.js')
.addEntry('app_fos_router', [
'./assets/js/fos_js_router.js'
])
.addEntry('app_angular', [
'./assets/js/apps/default/app.js', // angular app setup
'./assets/js/apps/default/routes.js', // angular routes setup
'./assets/js/apps/default/controller/test.js' // angular where Routing is needed
])
.enableSingleRuntimeChunk()
.cleanupOutputBeforeBuild()
.enableBuildNotifications()
.enableSourceMaps(!Encore.isProduction())
.enableVersioning(Encore.isProduction())
;
module.exports = Encore.getWebpackConfig();
前端树枝模板
{% extends 'base.html.twig' %}
{% block title %}Test{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
{{ encore_entry_script_tags('app_fos_router') }}
{{ encore_entry_script_tags('app_angular') }}
{% endblock %}
{% block body %}
<div ng-app="test" ui-view="content"></div>
{% endblock %}
通过上述设置,我在AngularJS文件中得到了test.js: ReferenceError: Routing is not defined at
。
我需要做些什么以使我可以在AngularJS文件中使用let url = Routing.generate('test_route_name');
?
答案 0 :(得分:2)
在您的router.js
目录中创建文件assets/js
。接下来,在router.js
中填充以下内容:
const routes = require('./fos_js_routes.json');
const router = require('../../vendor/friendsofsymfony/jsroutingbundle/Resources/public/js/router.min.js');
router.setRoutingData(routes);
module.exports = router;
像这样在您的webpack.config.js
中提供新变量:
.autoProvideVariables({
"Routing": "router",
})
将新的加载程序添加到您的Webpack:
.addLoader({
test: /jsrouting-bundle\/Resources\/public\/js\/router.min.js$/,
loader: "exports-loader?router=window.Routing"
})
最后扩展Webpack配置:
let config = Encore.getWebpackConfig();
config.resolve.alias = {
'router': __dirname + '/assets/js/router.js',
};
module.exports = config;
它应该使“路由”成为全局对象,以便您可以在其他js文件中使用它,例如:
let url = Routing.generate('some_route_name', { param: value });
希望有帮助。干杯。
答案 1 :(得分:0)
简单的修复方法可以使它起作用:
const routes = require('../../assets/fos_js_routes.json');
import Routing from '../../vendor/friendsofsymfony/jsrouting-bundle/Resources/public/js/router.min.js';
Routing.setRoutingData(routes);
window.Routing = Routing;