【发布时间】:2016-04-12 22:41:39
【问题描述】:
我的代码有问题,我在上面收到这条消息。这是我的代码。我是 ruby 新手
app/views/articles/edit.html.erb
<h>Edit existing article</h>
<%=@article.errors %>
<h2>The following errors prevented the article from getting created</h 2>
<ul>
<%@article.errors.full_messages.each do |ms g| %>
<li><% ms g %></l i>
<% end %>
</ul>
<% end %>
<%= form_for @article do |f| %>
<p>
<%= f.label :title %><b r/>
<%= f.text_field :title %>
</p>
<p>
<%= f.label :description %><br/>
<%= f.text_area :description %>
</p>
<p>
<%=f.submit %>
<% end %>
【问题讨论】:
-
请修正标题