7

我得到了错误incompatible character encodings: UTF-8 and ASCII-8BIT,当视图在数据库中找到一些字符时,如:ñ、á、é 等。

我的环境是:

  • 导轨:3.2.5
  • 红宝石:1.9.4p194
  • 数据库:Oracle 10g (10.2.0.1.0)

我可以使用 Toad 将这些字符保存在数据库中。

我试图在我的观点的第一行写这个:

<% # encoding: utf-8 %>

enviroment.erb

Encoding.default_external = Encoding::UTF_8
Encoding.default_internal = Encoding::UTF_8

但没有什么能解决这个问题。

请,有人可以给出一些建议来解决这个问题。

谢谢。

4

2 回答 2

6

我有同样的问题,经过几个小时的猴子补丁搜索后我解决了它。

    module ActiveSupport #:nodoc:
      class SafeBuffer < String

        def safe_concat(value)
          value = force_utf8_encoding(value)
          raise SafeConcatError unless html_safe?
          original_concat(value)
        end

        def concat(value)
          value = force_utf8_encoding(value)
          if !html_safe? || value.html_safe?
            super(value)
          else
            super(ERB::Util.h(value))
          end
        end

        alias << concat

        private

        def force_utf8_encoding(value)
          self.force_encoding('UTF-8').html_safe unless self.encoding.name == 'UTF-8'
          value = (value).force_encoding('UTF-8').html_safe unless value.nil? || value.encoding.name == 'UTF-8'
          value
        end
      end
    end
于 2013-05-24T14:39:02.777 回答
0

在文件boot.rb中,我添加了这一行:

ENV['NLS_LANG'] = 'AMERICAN_AMERICA.UTF8'

这让我解决了我的问题。

于 2013-06-27T20:27:07.857 回答