Symfony2 FOS Comment Bundle错误

时间:2013-04-11 12:25:37

标签: symfony bundle foscommentbundle

我的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);
})();

谢谢你提前变化很多。

1 个答案:

答案 0 :(得分:4)

您可能忘记在清除缓存后运行php ./app/console assetic:dump --env=dev或其他东西。有关更多信息,请查看the symfony cookbook

的asset_management部分