我对rails有点菜鸟..我正在尝试提交一个带有id的隐藏字段..
这是隐藏字段:
<%= f.hidden_field :point_of_sale %>
提交出来的参数如下:
"venue"=>{"point_of_sale"=>"9"}, "commit"=>"Update Venue", "id"=>"1"}
但它给了我错误:
PointOfSale expected, got String error
那是什么问题呢?
我对rails有点菜鸟..我正在尝试提交一个带有id的隐藏字段..
这是隐藏字段:
<%= f.hidden_field :point_of_sale %>
提交出来的参数如下:
"venue"=>{"point_of_sale"=>"9"}, "commit"=>"Update Venue", "id"=>"1"}
但它给了我错误:
PointOfSale expected, got String error
那是什么问题呢?