ROR 中文问题的通用解决方案

最近疯狂的爱上了ROR,开始用它做些小东西,可是总是出现乱码问题,最后Google以下,找到了很多的解决中文乱码问题的思路,总结与大家分享之。

开发环境:RedRails       使用编码:UTF-8             数据库:MySql

  1. 在radrails中,请在project的property对话框中,左边选中info节点,右边设置编码方式为UTF-8
  2. 修改MySQL的配置文件C:\Program Files\MySQL\MySQL Server 5.0\my.ini,改其中的两处default-character-set=utf8,改完后重启MySQL(windows服务)。这一步也可采用instance wizard来做。
  3. 修改ApplicationController 如下:
  4. class ApplicationController < ActionController::Base
        before_filter :configure_charsets
          def configure_charsets
              # @headers["Content-Type"] = "text/html; charset=utf-8"
              @response.headers["Content-Type"] = "text/html; charset=utf-8"
              # Set connection charset. MySQL 4.0 doesn??t support this so it
              #will throw an error, MySQL 4.1 needs this
              suppress(ActiveRecord::StatementInvalid) do
              ActiveRecord::Base.connection.execute 'SET NAMES utf8'
          end
        end
    end

  5. 请在rhtml中,或者适当的layout中,加上:
  6. <meta http-equiv="content-type" content="text/html; charset=UTF-8">

  7. 在config/database.yml修改如下:
  8. development:
    adapter: mysql
    database: depot_development
    encoding: utf8 *注意空格*
    username: root
    password:
    host: localhost
    保存后,重启ROR,启动app,再次ruby script/generate scaffold Product Admin应该就行了。数据库里的表应该都是utf8_general_ci,rhtml也应该都是utf-8编码。\app\views\layouts\admin.rhtml中加上<meta>标签。
    我用了解决了自己的中文乱码问题,大家看看,希望可以和我一样好运!!!

    posted on 2007-04-14 08:25  JesseZhao  阅读(3389)  评论(3)    收藏  举报

    导航