- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
早上好。
我正在学习教程 http://edgeguides.rubyonrails.org/getting_started.html我发现以下内容:
我有一个名为 ArticlesController 的 Controller 。 create 方法使用“if @article.save”语句来保存@article 对象,如果出现问题则渲染'new'。类似地,update 方法使用“if @article.update (article_params)”来更新该文章的记录,如果出现问题,则呈现“edit”。
在新 View 和编辑 View 中 <% if @ article.errors.any? %> 用于确定是否有任何错误并显示相应的消息,但问题是在新 View 中工作正常,但在编辑 View 中@article.errors.any View ?即使有错误也返回 false。
谁能告诉我哪里出了问题。非常感谢。
然后我放入 ArticlesController 类、 View new.html.erb 和 edit.html.erb,以及文章模型。
class ArticlesController < ApplicationController
def new
@article = Article.new
end
def edit
@article = Article.find(params[:id])
end
def update
@article = Article.find(params[:id])
if @article.update(article_params)
redirect_to @article
else
render 'edit'
end
end
def index
@articles = Article.all
end
def show
@article = Article.find(params[:id])
end
def create
@article = Article.new(article_params)
if @article.save
redirect_to @article
else
render 'new'
end
end
private
def article_params
params.require(:article).permit(:title, :text)
end
end
------------------------------------------------------------------
<h1>New Article</h1>
<%= form_with scope: :article, url: articles_path, local: true do |form| %>
<% if @article.errors.any? %>
<div id="error_explanation">
<h2>
<%= pluralize(@article.errors.count, "error") %> prohibited
this article from being saved:
</h2>
<ul>
<% @article.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>
<p>
<%= form.label :title %><br>
<%= form.text_field :title %>
</p>
<p>
<%= form.label :text %><br>
<%= form.text_area :text %>
</p>
<p>
<%= form.submit %>
</p>
<% end %>
<%= link_to 'Back', articles_path %>
----------------------------------------------------------------------
<h1>Edit article</h1>
<%= form_with(model: @article) do |form| %>
<% if @article.errors.any? %>
<div id="error_explanation">
<h2>
<%= pluralize(@article.errors.count, "error") %> prohibited
this article from being saved:
</h2>
<ul>
<% @article.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>
<p>
<%= form.label :title %><br>
<%= form.text_field :title %>
</p>
<p>
<%= form.label :text %><br>
<%= form.text_area :text %>
</p>
<p>
<%= form.submit %>
</p>
<% end %>
<%= link_to 'Back', articles_path %>
---------------------------------------------------------------------
class Article < ApplicationRecord
validates :title, presence: true,
length: { minimum: 5 }
validates :text, presence: true
end
最佳答案
form_with生成的所有表单默认都会通过XHR(Ajax)请求提交。如果您想禁用远程表单,那么您可以像在 new.html.erb 中的表单中那样使用本地表单。 在你的 edit.html.erb 中改变这个:
<%= form_with model: @article, local: true do |form| %>
关于ruby-on-rails - 使用 form_with 不显示错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46344681/
我正在尝试将隐藏字段添加到 form_with。 这里有 3 次尝试(和结果/错误信息) 第一次尝试 发件人:https://guides.rubyonrails.org/form_helpers.h
我正在重构我的应用程序的路由以解决 rule of thumb因为我的路线很长。 假设我有以下模型 class Company < ApplicationRecord has_many :proj
早上好。 我正在学习教程 http://edgeguides.rubyonrails.org/getting_started.html我发现以下内容: 我有一个名为 ArticlesControlle
我收到错误: undefined form_with for #:0x551e5a8> in articles#new 错误发生在以下文件中:new.html.erb其中有:
我正在使用 form_with helper 创建一个新表单,正如您所知,正在检测您是否位于新记录页面或编辑页面([遵循 Rails 指南中的 CRUD 示例][1],我将表单渲染为重用表单的一部分)
我正在尝试使用最新的 form_with 发送 Ajax 帖子。 这就是我所做的。 jQuery(document).ready(function($) { $('#co
我的应用程序中有一个表单,我通过以下方式声明它: = form_with model: project, remote: true, method: :put do |f| = f.select
Rails 的新手,正在尝试弄清楚如何将参数从 View 传递到表单,然后再传递到 Controller ,或者最有可能的是,找到一种为新对象分配外键的更好方法。我有一个链接到特定 socket 对象
对于以下内容,如何将 form_for 转换为 form_with: 我查看了 Rails 的 form_with 文档,但没有找到任何相关示例。 谢谢! 最佳答案 form_with 具有 sco
对于以下内容,如何将 form_for 转换为 form_with: 我查看了 Rails 的 form_with 文档,但没有找到任何相关示例。 谢谢! 最佳答案 form_with 具有 sco
我尝试了 form_tag 和 form_with - 结果是一样的, Controller 的 Action 永远不会被触发。 # routes.rb resources :products do
背景 在我的应用程序中,系列 由许多书籍 组成。系列的显示页面允许用户查看系列中的所有书籍并使用表单向系列中添加新书。 显示 页面上列出的每本书都有指向该书的编辑 页面的链接。编辑页面包含用于最初添加
我正在使用名为 jquery-minicolors-rails 的 gem 创建一个 rgb 表。然而,github 只显示了 simple_form_for 的例子。我正在使用 form_with。
Rails 5 引入了新的表单辅助方法 form_with . 和form_for有什么区别什么时候使用更合适? 最佳答案 这真的是为 Rails 5.1 做准备,其中只有 form_with应该使用
使用 rails5 的 form_with,我想通过单击 GET 按钮来显示当前时间文本。但是文字没有更新。 虽然我按下了按钮, 文字未更新。 响应文本已更新。 users_controller.rb
每 this pull request我可以看到一个数组应该传递给 form_with的模型参数。但是,当我提供以下内容时: ... Rails 将返回 - ActionView::Templ
我用这个把我的头发扯掉了。我在带有嵌套资源的 form_with 上得到了一个未经许可的参数。我正在使用 Rails 5.2.1 和 Ruby 2.5。 我不确定我到底哪里出了问题。我尝试了 site
我正在尝试呈现表单并将 url 和方法传递给它 home/index.html.erb 游乐设施/_form.html.erb 错误: undefined local variable or me
我刚刚从 Rails 5.1 升级到 5.2。我对已投入生产几个月没有问题的应用进行了良好的测试覆盖。 我在 Rails 5.1 中使用 form_with 几个月了。 form_with 的默认设置
Rails 5.1.2: 我正在尝试使用 form_with 创建 AJAX 表单符合Rails documentation和 this GitHub thread . 这段代码: 事实上这段代码
我是一名优秀的程序员,十分优秀!