Home  >  Q&A  >  body text

ruby-on-rails - Ruby on Rails 出现 NoMethodError 错误,求解决方案

我是一个Ruby on Rails新手,按照网上的入门教程去练习,然后进行到5.7章节(网址在这里)的时候出现NoMethodError错误,我后来上网搜索解决方案,依然没有成功解决,我是按照这个教程一步一步练习的。

下面是我代码和错误信息的截图

后来我问身边的朋友,他们说是版本问题,我Ruby版本是2.2.3,Rails是5.0.0,不过如何解决这个错误,希望有专业高手帮我解答,多谢!

伊谢尔伦伊谢尔伦2758 days ago882

reply all(2)I'll reply

  • 阿神

    阿神2017-04-25 09:04:12

    Your show action is defined under private, and the view layer cannot get your variables

    reply
    0
  • 某草草

    某草草2017-04-25 09:04:12

    The index action under your DropsControler is defined after the private keyword, so it is a private method, so you cannot get the show action when rendering the view, so noMethodError is displayed

    reply
    0
  • Cancelreply