у меня есть следующее в моем контроллере
def invoice_params
params.require(:invoice).permit({items: [:items]}, :price, :tax, :discount, :sum)
end
и в моей _form
<td><input size="8" <% form.text_field :items %> /></td> [pants]
<td><input size="8" <%= form.text_field :items %> /></td> [spoon]
<td><input size="8" <%= form.text_field :items %>/></td> [nil]
<td><input size="8" <%= form.text_field :items %> /></td> [nil]
<td><input size="8" /></td>
, поэтому я хочу, чтобы мой массив был как ["pants","Spoon",nil,nil]
с этим стиль у меня есть следующая ошибка на моем сервере
Started POST "/invoices" for 10.0.2.1 at 2020-04-09 00:46:55 +0000
Cannot render console from 10.0.2.1! Allowed networks: 127.0.0.0/127.255.255.255, ::1
Processing by InvoicesController#create as HTML
Parameters: {"authenticity_token"=>"94T3Stght1p9n9Bo44+lvS7CMnE5PEkuic5DP8ifYH4yxY5roVt19ZHpL6sIaiO31i/S5DADP+/ffNG3wdobLQ==", "invoice"=>{"items"=>"das", "tax"=>""}, "commit"=>"Create Invoice"}
**Unpermitted parameter: :items**