ruby / rails相当于javascript decodeURIComponent?

前端之家收集整理的这篇文章主要介绍了ruby / rails相当于javascript decodeURIComponent?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一些内容(html)由于这个 javascript(从 this page)被编码并发送到我的rails应用程序:
function encode_utf8_b64(string) {
return window.btoa(unescape(encodeURIComponent(string)));
}

相应的js代码将其恢复原状是这样的:

function decode_utf8_b64(string) {
return decodeURIComponent(escape(window.atob(string)));
}

我的问题是,在decodeURIComponent()的ruby中是否有相应的东西?到目前为止,我有这个让它成为出路的一部分,但我错过了decodeURIComponent的最后一步:

CGI::escape(Base64.decode64(string))

解决方法

URI.unescape可能会有所帮助:
def decode_utf8_b64(string)
  URI.unescape(CGI::escape(Base64.decode64(string)))
end

你必须添加必要的rubygem:

require 'uri'

我在ruby 1.9.2上测试了这个.

原文链接:https://www.f2er.com/ruby/268443.html

猜你在找的Ruby相关文章