我有一个form_for以下列方式编写:
<div class="field">
<%= location.label :city %>
<%= location.text_field :city, :disabled=>true%>
</div>
<div class="field">
<%= location.label :country %>
<%= location.text_field :country, :disabled=>true%>
</div>
如您所见,禁用了2个文本字段,因为它们由jquery函数自动填充,并且我不想让用户处理它们。问题在于,以这种方式,视图不会将该参数传递给控制器,因为已将其禁用!还有其他方法可以将不可编辑的text_field传递给控制器,请注意我不想使用隐藏字段,因为我想在文本框内向用户显示结果
TNX