ruby-on-rails – “未定义的方法`验证’”错误 – RoR Tut 5.11添加一些验证

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – “未定义的方法`验证’”错误 – RoR Tut 5.11添加一些验证前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Ruby on Rails noob在这里参加了RoR.org上的入门教程.我在“5.11添加一些验证”部分,并在尝试刷新/ posts / new页面时抛出错误

错误消息:

  1. NoMethodError in PostsController#new
  2. undefined method ` validates' for #<Class:0x0000000414fab0>
  3.  
  4. Extracted source (around line #2):
  5. 1 class Post < ActiveRecord::Base
  6. 2 validates :title,presence: true,3 length: { minimum: 5 }
  7. 4 end

我的帖子.rb:

  1. class Post < ActiveRecord::Base
  2. validates :title,length: { minimum: 5 }
  3. end

我的posts_controller.rb:

  1. class PostsController < ApplicationController
  2.  
  3. def index
  4. @posts = Post.all
  5. end
  6.  
  7. def new
  8. @post = Post.new
  9. end
  10.  
  11. def create
  12. @post = Post.new(params[:post].permit(:title,:text))
  13.  
  14. if @post.save
  15. redirect_to @post
  16. else
  17. render 'new'
  18. end
  19. end
  20.  
  21. def show
  22. @post = Post.find(params[:id])
  23. end
  24.  
  25. private
  26.  
  27. def post_params
  28. params.require(:post).permit(:title,:text)
  29. end
  30. end

Sidenote – FWIW,在尝试诊断时,我从posts_controller.rb中删除了@ post = Post.new,并在刷新时出现此错误

  1. undefined method `errors' for nil:NilClass
  2. Extracted source (around line #3):
  3.  
  4. <h1>New Post</h1>
  5. <%= form_for :post,url: posts_path do |f| %>
  6. <% if @post.errors.any? %>
  7. <div id="error_explanation">
  8. <h2><%= pluralize(@post.errors.count,"error") %> prohibited this post from being saved:</h2>
  9. <ul>

找不到new.html.erb部分的任何问题,所以我转向社区寻求指导.谁知道我哪里出错了?在此先感谢您的帮助.

解决方法

在将我的头撞在桌子上30分钟之后,并重新创建应用程序三次,因为我认为我可能会犯一些拼写错误,这就是问题所在:

NoMethodError(未定义的方法`验证’为#)

请注意,第一个引用和验证之间的差距很大? – > ‘验证

是的,就是这样.当您从网站复制并粘贴代码时,无论@#$%^& *字符随附了什么.我也从同一个教程中复制了很多其他代码,这一切都很有效.

因此,修复方法是在使用空格或制表符“验证”之前替换不可见字符.

“Rails入门”的好方法. Just Great™. Rails,一定很棒.

猜你在找的Ruby相关文章