- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
尝试在没有脚手架的情况下在 ROR 中编程。在我用 rails s
打开应用程序后,在 'new'
中输入每个必要的字段并进入 'show'
页面,'show '
什么也没给我,就像这样:
这是我的 battles/show.html.erb:
<% provide(:title, @battle.name) %>
<h1><%= @battle.name %></h1>
<div class="">
<ul>
<li><%= @battle.name %></li>
<li><%= @battle.date %></li>
<li><%= @battle.location %></li>
<li><%= @battle.belligerentA %></li>
<li><%= @battle.belligerentB %></li>
<li><%= @battle.strengthA %></li>
<li><%= @battle.strengthB %></li>
<li><%= @battle.casualtiesA %></li>
<li><%= @battle.casualtiesB %></li>
<li><%= @battle.result %></li>
</ul>
</div>
在我的战斗 Controller 中,我将 show
定义为 common:
def show
@battle = Battle.find(params[:id])
end
这是我的战斗 Controller :
class BattlesController < ApplicationController
def index
@battle = Battle.all
end
def new
@battle = Battle.new
end
def show
@battle = Battle.find(params[:id])
end
def create
@battle = Battle.new(battle_params)
if @battle.save
redirect_to @battle
else
render 'new'
end
end
private
def battle_params
params.require(:battle).permit(:name, :date, :location, :belligerentA, :belligerentB, :strengthA, :strengthB, :casualtiesA, :casualtiesB, :result)
end
end
当我查看页面源代码时,找不到任何子标题 h1
和 li
:
这是模型:
class Battle < ActiveRecord::Base
attr_accessor :name, :date, :location, :belligerentA, :belligerentB, :strengthA, :strengthB, :casualtiesA, :casualtiesB, :result
before_save { self.name = name.downcase }
validates :name, presence: true, uniqueness: { case_sensitive: false }
validates :date, presence: true
validates :location, presence: true
validates :belligerentA, presence: true
validates :belligerentB, presence: true
validates :result, presence: true
end
这是我的 rake routes
结果:
battles GET /battles(.:format) battles#index
POST /battles(.:format) battles#create
new_battle GET /battles/new(.:format) battles#new
edit_battle GET /battles/:id/edit(.:format) battles#edit
battle GET /battles/:id(.:format) battles#show
PATCH /battles/:id(.:format) battles#update
PUT /battles/:id(.:format) battles#update
DELETE /battles/:id(.:format) battles#destroy
root GET / pages#home
contact GET /contact(.:format) pages#contact
about GET /about(.:format) pages#about
还有我的 new.html.erb:
<% provide(:title, 'Adding New Article') %>
<h1>Adding New Article</h1>
<div class="">
<div class="">
<%= form_for(@battle) do |f| %>
<%= render 'shared/error_messages' %>
<%= f.label :name %>
<%= f.text_field :name %>
<%= f.label :date %>
<%= f.text_field :date %>
<%= f.label :location %>
<%= f.text_field :location %>
<%= f.label :belligerentA, 'Belligerent-A' %>
<%= f.text_field :belligerentA %>
VS
<%= f.label :belligerentB, 'Belligerent-B' %>
<%= f.text_field :belligerentB %>
<%= f.label :strengthA, 'Strength-A' %>
<%= f.text_field :strengthA %>
VS
<%= f.label :strengthB, 'Strength-B' %>
<%= f.text_field :strengthB %>
<%= f.label :casualtiesA, 'Casualties & Losses-A' %>
<%= f.text_field :casualtiesA %>
VS
<%= f.label :casualtiesA, 'Casualties & Losses-B' %>
<%= f.text_field :casualtiesB %>
<%= f.label :result %>
<%= f.text_field :result %>
<%= f.submit "Create New Article" %>
<% end %>
</div>
</div>
有人能弄清楚发生了什么吗?
最佳答案
这是您的问题 - 您的 Battle 模型中的所有 attr_accessor
。
Rails 已经在 ActiveRecord 中为您提供了这些,而您已经覆盖了它们,因此您的值将无法正确保存。
删除它们,一切都应该是好的。
关于ruby-on-rails - Rails 4 erb Ruby 什么都不返回,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19508492/
我在 Rails 应用程序上使用 chessboard-0.3.0.js。由于 Rails Assets 管道的问题,我必须编辑渲染图像的 js 代码的每个部分,例如 Pieces。chessboar
我有一个简单的 fixture.yml 文件: label: body: "" 问题是 ERB 代码被解析为加载 fixture 的一部分,而我实际上希望正文字面意思是“”(未插值)。 如何逃
这是erb3.rb require 'erb' weekday = Time.now.strftime('%A') simple_template = "Today is ." renderer =
name.html.erb 和 name.erb 有什么区别?特别是,是否有任何原因导致 name.erb 不好用? 我知道 name.html.erb 是约定 - 这表示 HTML 模板和 ERB
.erb、.rhtml 和 .html.erb 之间有什么区别? 最佳答案 没什么,真的。这只是 Rails 1 和 Rails 2 之间理念的改变。在 Rails 2 之前,有 file.rhtml
我想知道是否有一个 API 可以很好地支持 eRuby (erb) 和 JavaScript 突出显示、语法分析和代码辅助。 我已经尝试过使用 Aptana 来使用 Eclipse RadRails
我正在尝试在 Rails 应用程序上的示例 ruby 上实现 jquery。我刚刚开始探索js。我知道我在 js/jquery 方面还有很多东西要学。现在有件事让我很困惑。 我有一个 js.erb
我有一个导航栏,它显示未读消息数。未读计数必须在导航栏文本中进行格式化,因此我使用了以下内容: false}).count(:id, :distinct => true).to_s}", conve
我正在编写一个显示代码和输出的样式指南。它目前的结构使得代码只需要描述一次,并以其原始版本和解释版本显示,如下所示: #{ image_tag 'image.png' } PLACE_THE
我的大多数 js.erb 文件底部都包含类似这样的内容: $("#flash_message").html(" "note")) %>"); $("#flash_message").fadeOut(2
我的目标是使用相同的 Controller 调用 html.erb 和 js.erb 文件,但它只调用我的 html 文件。 我的 js 没有被调用。 Controller /categories_c
尝试将* .html.slim View 转换为* .html.erb。 我看了以下两个问题: How can I convert html.slim to html.erb?-从控制台调用时获取un
我正在 Eclipse 中开发 jRuby on Rails 应用程序。我最近安装了 Aptana 以更好地支持 rails 文件。这为大多数文件类型提供了合理的突出显示和支持,包括“html.erb
过去几天我一直在尝试理解 Rails 上 AJAX 的不同方面。在阅读了一些介绍后,我对 Rails 内置的 UJS 功能有了一定的了解。我编写的一个小玩具应用程序的示例,我想在其中引入一些 AJAX
我在不同模型的 ajax 响应之间有重复的 js.erb 代码。我想通过将参数传递到 js.erb 部分来重构重复的 js.erb 代码。 如何从 js.erb 文件渲染 js.erb 部分? 最佳答
我的 Rails 应用程序正在为特定窗口使用 js.erb View 而不是 html.erb View 。这在实践中很好用,但是当我对 capybara 使用 cucumber 测试时,它给我一个错
我尝试使用 rails-erb-loader。 在我的 home.component.ts import templateString from './home.component.html'; 我有
我刚刚花了最后一个小时浏览 Atom 论坛寻找答案。有没有人想通了? 最佳答案 core: customFileTypes: "text.html.ruby": [
我没能找到讨论 create.js.erb 和 destroy.js.erb 如何适合 Rails 3 应用程序的文档。 app > Controller 中这些类型的 Javascript 文件背后
我目前正在尝试将 vue.js v-model 包含到我的 erb 表单输入标签中,但我找不到正确的语法。 这是我的代码目前的样子: 如果有任何想法,我将不胜感激。谢谢! 最佳答案 试试这
我是一名优秀的程序员,十分优秀!