3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Rails & Haml の form で 閉じタグが出力されなかったりエラーが起きたりするときの対処。

Last updated at Posted at 2015-09-04

↓動く。

= form_tag do
  = text_field_tag :text

↓動かない。エラー。(do がない)

= form_tag
  = text_field_tag :text

↓動くが、閉じタグ が出力されない。( do がない )

= form_tag
= text_field_tag :text

↓動かない。エラー。(二行目が無いので、do の中身も無いとみなされる)

= form_tag do

はまった。

チャットメンバー募集

何か質問、悩み事、相談などあればLINEオープンチャットもご利用ください。

メンター受付

3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?