我正在尝试使用带有symfony和angularjs的软件包FOSJsRoutingBundle,但是控制台日志会给我一个错误。
ReferenceError: goog is not defined
goog.provide('fos.Router');
ReferenceError: fos is not defined
..._crear":{"tokens":[["text","\/"]],"defaults":[],"requirements":[],"hosttokens":[...
有人知道为什么会出现这个错误吗?
答案 0 :(得分:2)
当我尝试连接所有javascript文件进行制作时,我遇到了同样的问题。原因很简单,我包含了文件
./vendor/friendsofsymfony/jsrouting-bundle/Resources/js/router.js
而不是
./vendor/friendsofsymfony/jsrouting-bundle/Resources/public/js/router.js
。
希望这有帮助。