Ruby on Rails 脚手架不显示

Posted

技术标签:

【中文标题】Ruby on Rails 脚手架不显示【英文标题】:Ruby on Rails Scaffold not displaying 【发布时间】:2015-03-03 12:15:57 【问题描述】:

我已经创建了一个脚手架来创建这个迁移的每周日志:

class CreateLoggs < ActiveRecord::Migration
  def change
    create_table :loggs do |t|
    t.string :Name
    t.string :Date
    t.string :Time
    t.text :WhatsGoneWellThisWeek?
    t.text :WhatsNotGoneWellThisWeek?
    t.text :LearntAnythingNew?
    t.text :WhatWouldYouLikeToImprove?
    t.text :AnythingElse?

    t.timestamps
  end
end

我认为 t.text 会占用更多字符。但是,在每个文本字段中写入一个段落后,除了字符串类型之外,它输出为空。然后我将所有内容都更改为字符串,但这也不起作用,实际上它甚至不允许我输入 2 或 3 个字母。我希望文本类型能够在表单中各占一个段落。我唯一的猜测是我创建的标题可能太长了? (顺便说一句,我也尝试过 What_would_you_like_to_improve?)但仍然没有运气。

【问题讨论】:

【参考方案1】:
class CreateLoggs < ActiveRecord::Migration
  def change
    create_table :loggs do |t|
      t.string :name
      t.string :date
      t.string :time
      t.text :whats_gone_well_this_week
      t.text :whats_not_gone_well_this_week
      t.text :learnt_anything_new
      t.text :what_would_you_like_to_improve
      t.text :anything_else
      t.timestamps
    end
  end

end

【讨论】:

以上是关于Ruby on Rails 脚手架不显示的主要内容,如果未能解决你的问题,请参考以下文章

Ruby on rails,改变最近创建的脚手架

Ruby on Rails 6 脚手架模板位于何处?

Ruby On Rails在脚手架之后添加新页面

ruby on rails 路线

基于 Ruby on Rails 的网站和应用程序 [关闭]

如何在 ruby​​ on rails 中更改路线?