刚刚将 ruby-china 里面的分享功能剥离出来成为一个独立的 Gem
https://github.com/huacnlee/social-share-button
效果就是这个页面下面那几个图标 虽然目前世面上有很多类是 AddThis 这样的网站提供这样的功能,但是我不太喜欢那样,需要调用站外的资源。 其实需求很简单,就是提供几个热门网站的分享按钮,而不需要类是 AddThis 那样那么多的网站支持(我认为也没人会去点那么多) 所以,或许你需要一个更佳简洁的分享功能
@huacnlee 再增加一个可以自定义 URL 的判断就更好了。 文件:social-share-button.coffee
window.SocialShareButton =
...
share : (site, title) ->
url = encodeURIComponent(location.href)
title = encodeURIComponent(title)
...
false
的share : (site, title) ->中加上url参数,参数为空时用location.href。 这样更灵活。期待下一版本中加入。
为什么运行 rails generate social_share_button:install
会有这个报错,这个开发的数据库是不用的啊
Access denied for user 'peons'@'localhost' to database 'peons_development' (Mysql2::Error)