0

我使用 Twitter Widget 的时间最长,但我希望将其提升一个级别并添加额外的样式和过滤。最近我开始使用 Rails Twitter Gem,到目前为止一切都很好,但我希望能够链接回任何@username出现的个人资料。

环顾四周,似乎Twitter Anywhere是要走的路,但我想知道在 Rails 环境中是否有更好的实现?也许是加载所需 JS 文件并提供辅助方法的 gem?

另外我应该注意,我不一定需要任何地方 api 提供的所有功能,目前我的主要重点只是提供@username 链接(尽管有未来扩展的选项当然很好)。

4

1 回答 1

0

It turns out that Twitter Anywhere might have been a little overkill for what I was trying to do. All I really needed was the following helper method as mentioned here

def linkup_mentions_and_hashtags(text)    
  text.gsub!(/@([\w]+)(\W)?/, '<a href="http://twitter.com/\1">@\1</a>\2')
  text.gsub!(/#([\w]+)(\W)?/, '<a href="http://twitter.com/search?q=%23\1">#\1</a>\2')
  text
end
于 2012-07-25T17:35:41.060 回答