我將如何在rails 3中使用responds_to_parent插件3.我在rails 2.3.5中使用過它。那時沒有錯誤。但是當我轉移到軌3它顯示以下錯誤在rails 3中的responds_to_parent 3
undefined local variable or method `erase_redirect_results'.
如何解決此問題?
我將如何在rails 3中使用responds_to_parent插件3.我在rails 2.3.5中使用過它。那時沒有錯誤。但是當我轉移到軌3它顯示以下錯誤在rails 3中的responds_to_parent 3
undefined local variable or method `erase_redirect_results'.
如何解決此問題?
像他的問題跟蹤報告:http://github.com/markcatley/responds_to_parent/issues#issue/1
這個插件是不是Rails 3的兼容。
您有4種選擇:
在Rails 3.1中,'responds_to_parents'不起作用,因爲它使用了庫'PrototypeHelper',並且此庫在3.1中已被刪除。
http://apidock.com/rails/ActionView/Helpers/PrototypeHelper
在rails> 3.0中,您可以隨時用'remotipart'替換'responds_to_parent'。
os.alfajango.com/remotipart/
https://github.com/JangoSteve/remotipart
軌3.0支持固定在1.1.0版本中,不知道3.1+
下面是實施軌道〜> 3.2 https://github.com/Gonzih/respond_to_parent
這不會在Rails的工作3.1因爲ActionView :: Helpers :: PrototypeHelper已被刪除,因爲@OlivierGrimard在另一評論中說。您可以使用prototype-rails gem將其恢復,但由於Rails 3.1隨jQuery提供了默認值,因此使用它們可能會導致衝突。 – dekeguard 2012-11-29 20:43:00