RoR中文支持解决办法

IDE使用radrails
1.windows->preferences->general->workspace->textfile encoding->other->UTF-8

2.mysql默认好像还是装成gb2312,否则mysql client会乱码(不知道为什么)

3.数据库建表的时候选择utf8。我用的是mysql gui tools 。具体方法:建表的时候,右键单击表->edit table->table option->character set->utf-8

4.数据库连接使用utf8.在/config/database.yml中,数据库连接的最后一行加入encoding: utf8

5.所有的rhtml和rb文件都使用utf8编码,rhtml中在head中加入<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />(这条参考别人的,在我这不设可以)

你可能感兴趣的:(html,windows,mysql,ide)