2

我的 FOSCommentBundle 有问题。我已经设置了我的捆绑包,它工作了几天,但今天它不工作了。我正在粉碎我的头,无法找到解决方案。

问题是 fos_comment_script.src = '/web/js/35a8e64_comments_1.js' 不存在,我无法访问它,因此没有添加任何线程,也没有显示任何内容。我没有收到任何错误,什么都没有,一切看起来都很好,但什么也没发生。我正在使用 async.twig.html 并且在我的页面上生成的 javascript 看起来像这样

// thread id
var fos_comment_thread_id = '309';

// api base url to use for initial requests
var fos_comment_thread_api_base_url = '/web/api/threads';

// Snippet for asynchronously loading the comments
(function() {
var fos_comment_script = document.createElement('script');
fos_comment_script.async = true;
fos_comment_script.src = '/web/js/35a8e64_comments_1.js';
fos_comment_script.type = 'text/javascript';

(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(fos_comment_script);
})();

谢谢你提前变化很大。

4

1 回答 1

4

您可能在清除缓存后忘记运行 php./app/console assetic:dump --env=dev什么的。有关更多信息,请查看symfony 食谱的资产管理部分

于 2013-04-11T14:24:18.363 回答