ruby 更改Rails 3.2.13和4.0如何在JSONMonkey修补程序ActiveSupport中编码unicode以恢复to_json unicode字符编码。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ruby 更改Rails 3.2.13和4.0如何在JSONMonkey修补程序ActiveSupport中编码unicode以恢复to_json unicode字符编码。相关的知识,希望对你有一定的参考价值。

# http://omegadelta.net/2013/04/28/changes-to-how-rails-3-2-13-and-4-0-encodes-unicode-in-json/
# http://stackoverflow.com/questions/14823971/json-encoding-decoding-with-unicode-in-rails
# https://gist.github.com/WilliamDenniss/5475630
# thanks: @ William Denniss

module ActiveSupport
  module JSON
    module Encoding
      class << self

      # from https://github.com/rails/rails/blob/v3.2.12/activesupport/lib/active_support/json/encoding.rb#L121
      def escape(string)
        if string.respond_to?(:force_encoding)
          string = string.encode(::Encoding::UTF_8, :undef => :replace).force_encoding(::Encoding::BINARY)
        end
        json = string.
          gsub(escape_regex) { |s| ESCAPED_CHARS[s] }.
          gsub(/([\xC0-\xDF][\x80-\xBF]|
                 [\xE0-\xEF][\x80-\xBF]{2}|
                 [\xF0-\xF7][\x80-\xBF]{3})+/nx) { |s|
          s.unpack("U*").pack("n*").unpack("H*")[0].gsub(/.{4}/n, '\\\\u\&')
        }

        ## alternate encoding from https://github.com/rails/rails/issues/3727
        #json = string.
        #  gsub(escape_regex) { |s| ESCAPED_CHARS[s] }.
        #  gsub(/([\xC0-\xDF][\x80-\xBF]|
        #         [\xE0-\xEF][\x80-\xBF]{2}|
        #         [\xF0-\xF7][\x80-\xBF]{3})+/nx) { |s|
        #  s.unpack("U*").pack("N*").unpack("H*")[0].gsub(/.{4}/n, '\\\\u\&')
        #}

        json = %("#{json}")
        json.force_encoding(::Encoding::UTF_8) if json.respond_to?(:force_encoding)
        json
        end
      end
    end
  end
end

以上是关于ruby 更改Rails 3.2.13和4.0如何在JSONMonkey修补程序ActiveSupport中编码unicode以恢复to_json unicode字符编码。的主要内容,如果未能解决你的问题,请参考以下文章

如何在 ruby​​ on rails 中更改路线?

ruby 猴子补丁修复身份验证失败! invalid_credentials:OAuth2 ::错误jruby 8,rails 3.2.13 devise 3.2.4 |迫使法拉第'uncom

如何使用链接/按钮更改列属性 - Ruby on Rails

Ruby / Rails - 更改时间的时区,而不更改值

Ruby on Rails:视图更改后,网站未更新

rake db rake 任务不工作 Ruby 2.4.0 & Rails 5.0.1