gpt4 book ai didi

ruby-on-rails - rails 3 : adding DISQUS gem for comments

转载 作者:行者123 更新时间:2023-12-04 03:36:59 24 4
gpt4 key购买 nike

嗨,我正在尝试让 DISCUS 评论在 Rails 3 应用程序中工作。似乎没有一个很好的设置指南。

评论系统不会出现,我在 View 中看到的是:

<script type="text/javascript">var disqus_developer = 1;</script><div id="disqus_thread"></div>
<script type="text/javascript" src="http://disqus.com/forums/gppublic/embed.js"></script>
<noscript><a href="http://gppublic.disqus.com/?url=ref">View the discussion thread</a></noscript>

这是我设置它的步骤:

1) gem install disqus
2) 将配置块放在 application.rb 中并添加您的特定帐户名
config.after_initialize do
Disqus::defaults[:account] = "youraccountname"
# so that the comments will load up in development environment
Disqus::defaults[:developer] = true
Disqus::defaults[:container_id] = "disqus_thread"
Disqus::defaults[:show_powered_by] = false
end

3)然后放置在我的节目 View 中
<div id ="disqus_thread">
<%= disqus_thread %>
</div>

我哪里错了?谢谢

最佳答案

我认为您需要使用 raw 或 html_safe。

 = raw disqus_thread

或者
 = disqus_thread.html_safe

关于ruby-on-rails - rails 3 : adding DISQUS gem for comments,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6419082/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com