class method
self.clean_up_ajax_request_body!
Ruby on Rails 2.2.3
Since v2.2.3 Last seen in v2.2.3Signature
self.clean_up_ajax_request_body!(body)
No documentation comment.
Parameters
-
bodyreq
Source
# File actionpack/lib/action_controller/request.rb, line 605
def clean_up_ajax_request_body!(body)
body.chop! if body[-1] == 0
body.gsub!(/&_=$/, '')
end
Defined in actionpack/lib/action_controller/request.rb line 605
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionController::AbstractRequest