正在开发基本消息应用程序的回复功能,并且已经卡了一段时间。
在我的消息控制器中,我将原始消息作者的 user_id 传递给 :to 以获取回复消息”:
@message = current_user.sent_messages.build(:to => @original.author.id, :subject => subject, :body => body)
render :template => "sent/raply"
我的隐藏字段如下所示:
<%= f.hidden_field :to %>
我通过表单获得了正确的 user_id,但我需要将值作为数组传递,例如“to”=>[“1”],而不是“to”=>“1”。