ruby-on-rails – Rails中缺少部分错误3

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – Rails中缺少部分错误3前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我收到一个错误
Missing partial post/questions,application/questions with
{:locale=>[:en],:formats=>[:html],:handlers=>[:erb,:builder,:coffee]}.
Searched in:* "/Users/..../<project name>/app/views"

我试图将数据库中的所有帖子呈现为index.html.erb.

我的观点部分是post / index.html.erb:

<!--html codes -->

    <%= render 'questions' %>

控制器控制器/ post_controller.rb:

def index
       @posts=Post.all
    end

    def questions
    end

questions.html.erb

<%=@posts.each do |post| %>
    <table>
        <tr>
            <td>
                <h2>
                    <%=post.title%>
                </h2>
            </td>
        </tr>
        <tr>
            <td>
                <h3><%=post.body%></h3>
            </td>
        </tr>
        <tr>
            <td>
                This Post comes under:<h4><%=post.tag%></h4>
            </td>
        </tr>
    </table>

解决方法

Partials的文件名必须以下划线开头.您应该在post文件夹中保存_questions.html.erb.此外,您无需定义“问题”操作.
原文链接:https://www.f2er.com/ruby/267329.html

猜你在找的Ruby相关文章