再次提出新問題...我已經使用Bitly縮短了鏈接的代碼。RoR:使用Bitly搜索並縮短評論中的所有鏈接
def bitly_links(url)
bitly ||= begin
Bitly.use_api_version_3
Bitly.new('username', 'key')
bitly.shorten(url)
end
end
這次我想做的是搜索並縮短註釋創建後的所有鏈接。這類似於這篇博客Using bitly in rails 3,但發現它有點混亂,因爲使用的爲循環,而不是做 ... 末塊。另外,我注意到這個方法甚至沒有被調用。在網站
樣品評論:
嘿,你應該檢查後http://vox4life.blogspot.com/2012/11/4Life-2012-Growth-is-strong.html而這一次.. http://vox4life.blogspot.com/2012/11/dengue-outbreak-peoples-journal.html另外這款 http://vox4life.blogspot.com/2012/02/transfer-factor-immunotherapy.html
會變成:
嘿,你應該檢查後http://bit.ly/ZHdLTa而這一次.. http://bit.ly/TZ6Nrj另外這款http://bit.ly/ZrnWMj
預先感謝您。
Similar question to this,但在Java
我會試試這個.. :) – jezureru
很酷..它的工作..非常感謝你! – jezureru