Undefined Method 'length' for Enumerable when calling truncate method in Rails 2.2
日前發現為了使用 Rails 新版的 facebooker plugin 必須將原本的應用程式從 Rails 2.1.x 開發環境升級到 Rails 2.2.x 以上版本,而在升級之後出現了一些問題,其中之一是 Truncate 的問題,啟動 mongrel server 後會出現錯誤訊息:
undefined method length' for #
解決方式只要修改 text_helper.rb 裡面的 truncate_html 和 truncate method 即可:
那麼當我們在視圖中使用如下代碼時:
就可以正常顯示 truncate 效果了。
undefined method length' for #
解決方式只要修改 text_helper.rb 裡面的 truncate_html 和 truncate method 即可:
那麼當我們在視圖中使用如下代碼時:
就可以正常顯示 truncate 效果了。