【发布时间】:2015-11-17 02:40:42
【问题描述】:
rails 服务器出现以下错误,
语法错误,意外的keyword_ensure,期待输入结束
= simple_form_for @recipe, html: { multipart: true } do |f|
- if @recipe.errors.any?
#errors
%p
= @recipe.errors.count
Prevented this recipe from saving
%ul
- @recipe.errors.full_messages.each do|msg|
%li= msg
.panel-body
= f.input :title, input_html: { class: 'form-control' }
= f.input :description, input_html: { class: 'form-control' }
= f.button :submit, class: "btn btn-primary"
【问题讨论】:
标签: ruby-on-rails haml