下面脚手架创建
class CreateOutdoorlogs < ActiveRecord::Migration
def self.up
create_table :outdoorlogs do |t|
t.string :title
t.text :description
t.timestamps
end
end
def self.down
drop_table :outdoorlogs
end
end
title 在编辑时,汉字不能显示。description 中的汉字则能显示。
为何?
已经加了
<meta http-equiv="content-type" content="text/html;charset=gb2312" />