我使用cells gem创建Wall组件。并使用下一代码在app/cells/wall/show.haml
= form_for :messagess do |f|
= f.text_field :test
但输出包含
<form action="http://test.localhost:3000/" accept-charset="UTF-8" method="post">
<input name="utf8" type="hidden" value="✓" /><input type="hidden" name="authenticity_token" value="0OScxNnGoB47HW4YNIJ2ERhSDcPCcEbEGflI8Wq05FC0ny6XuYh4rWwHY5nOigXDIGZRJqg1HLN1OQ2J4CVEEw==" />
<input type="text" name="messagess[test]" id="messagess_test" />
</form>
我做错了什么?