텍스트 영역에서 사용자 입력을 처리하는 모델을 작성 중입니다. http://blog.caboo.se/articles/2008/8/25/sanitize-your-users-html-input 의 조언에 따라 before_validate를 사용하여 데이터베이스에 저장하기 전에 모델의 입력을 정리하고 있습니다. 콜백.
내 모델의 관련 부분은 다음과 같습니다.
include ActionView::Helpers::SanitizeHelper
class Post < ActiveRecord::Base {
before_validation :clean_input
...
protected
def clean_input
self.input = sanitize(self.input, :tags => %w(b i u))
end
end
말할 필요도없이 이것은 작동하지 않습니다. 새 게시물을 저장하려고하면 다음 오류가 발생합니다.
undefined method `white_list_sanitizer' for #<Class:0xdeadbeef>
분명히 SanitizeHelper는 HTML :: WhiteListSanitizer의 인스턴스를 생성하지만 내 모델에 혼합하면 HTML :: WhiteListSanitizer를 찾을 수 없습니다. 왜? 이 문제를 해결하려면 어떻게해야합니까?