"模板丢失"错误.缺少模板创建

Vie*_*ngh 0 ruby validation views ruby-on-rails

我尝试在视图中显示验证错误以创建新文章页面.我在文章模型中验证了检查正文和标题的存在(验证:title,:body,:presence => true).当我保留文章和标题文本框但显示"模板丢失"错误时,它不允许创建新文章,以下信息.

Missing template articles/create, application/create with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :coffee]}. Searched in: * "F:/kuta/billi/app/views" * "C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/twitter-bootstrap-rails-2.2.6/app/views" * "C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/devise-2.2.3/app/views"
Run Code Online (Sandbox Code Playgroud)

我已将<%= f.error_messages%>部分放在文章的新页面中,并将gem'vynamic_form'放在gemfile中.

_form.html.erb for article/new.html.erb

<%= form_for @article, :html => { :class => '' } do |f| %>
<%= f.error_messages %>
  <div>
    <%= f.label :title, :style => "margin-top:10px;" %>
    <div>
      <%= f.text_field :title, :style => "width:730px; height:30px; border: 1px solid #66c9ee;margin-top:10px; background-color:#FFFFFF;" %>
    </div>
  </div>
  <div>
    <%= f.label :body, :class => 'control-label' %>
   <%= f.text_area :body, :style => "width:730px; height:250px; border: 1px solid #66c9ee;margin-top:10px; background-color:#FFFFFF;" %>
  <%= f.label :tag_list, :style => "margin-top:10px" %><br />
  <%= f.text_field :tag_list, :style => "width:730px; height:30px; border: 1px solid #66c9ee;margin-top:0px; background-color:#FFFFFF;" %>
  <div style="margin-top: 20px">
    <%= f.submit nil, :class => 'btn btn-primary' %>
    <%= link_to t('.cancel', :default => t("helpers.links.cancel")),
                articles_path, :class => 'btn' %>
  </div>
<% end %>
Run Code Online (Sandbox Code Playgroud)

article.rb模型

class Article < ActiveRecord::Base
   attr_accessible :title, :body
   attr_accessible :tag_list
   has_many :comments
   belongs_to :user
   has_many :taggings
   has_many :tags, through: :taggings
   validates :title, :body, :presence => true


   def tag_list
    self.tags.collect do |tag|
     tag.name
    end.join(", ")
   end

   def tag_list=(tags_string)
    tag_names = tags_string.split(",").collect{|s| s.strip.downcase}.uniq
    new_or_found_tags = tag_names.collect { |name| Tag.find_or_create_by_name(name) }
    self.tags = new_or_found_tags
   end
end
Run Code Online (Sandbox Code Playgroud)

你能不能帮助我,我错了.

Zip*_*pie 6

验证失败时,在控制器操作中,您应该使用render 'new'而不是再次渲染新模板render 'create'