Ruby on Rails
Thursday, February 28, 2013
http://guides.rubyonrails.org/action_controller_overview.html#filters Here you'll get a clear description about how to use Filters.
--
Best Regards,
Best Regards,
Ryan Cheung
On Thu, Feb 28, 2013 at 11:00 AM, 卓一抗 <zhuoyikang@gmail.com> wrote:
hello, everybody.in ror, we can add a after_filter to a controller.def aes_encryptresponse.body = AesHelper.aes_encrypt(response.body)end
after_filter :aes_encryptand all action's repsonse int the controller can be encrypt.and my question is , how to decrypt data use before_filter, or anything else.ex: i want to post json data to /usr/register, the json data is {"name":"good", "password":"nice"}. encrypt it to5B2YC7WzgFmaivnATP1ZLR4sTXB3SsWEUeMpUbcYiylcvHxfSStYIBqwIMCjZAY3
so i post 5B2YC7WzgFmaivnATP1ZLR4sTXB3SsWEUeMpUbcYiylcvHxfSStYIBqwIMCjZAY3 to /usr/registerin action register , i would write code like this:#### already decrypt.def registerUser.register(params[:name], params[:passport])endso, how can i decrypt 5B2YC7WzgFmaivnATP1ZLR4sTXB3SsWEUeMpUbcYiylcvHxfSStYIBqwIMCjZAY3 before action register to use params directly in registerthanks for anybody's help!!--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/JA4STvbtDMUJ.
For more options, visit https://groups.google.com/groups/opt_out.
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment