0

my view code(index.slim) is this:

-form_tag do
   Form contents

but this doesn't generate a form,nothing I will get,why?

my rails version is 3.2.14 .and I just generate this project through rails new blog to study rails.

Marcelo De Polli
  • 28,123
  • 4
  • 37
  • 47
HXH
  • 1,643
  • 4
  • 19
  • 31

1 Answers1

0

Don't you have to use the outputting version of the form_tag helper?

= form_tag do
Marcelo De Polli
  • 28,123
  • 4
  • 37
  • 47