2

我有一个带有以下迁移的表“通知”:

class CreateNotifications < ActiveRecord::Migration
  def change
    create_table :notifications do |t|
      t.integer :id
      t.string :from
      t.string :to
      t.string :subject
      t.text :content
      t.string :interval_type
      t.integer :interval
      t.datetime :begin
      t.datetime :end
      t.timestamps
    end
  end
end

问题是,当我转到 myapplication/notifications/new 时,我在“内容”字段中看到输入类型 =“文本”而不​​是文本区域。

解决了

4

1 回答 1

3

在您的视图文件中,将该content字段定义为 atext_area而不是 a text_field

# app/views/notifications/new.html.erb
# Change <%= f.text_field :content %> to <%= f.text_area :content %>
于 2013-04-13T10:17:22.073 回答