我想在用戶在HTML表單上點擊'submit'時向請求添加一些查詢字符串參數。當前模板文件中的代碼:在Phoenix HTML表單的'Submit'按鈕中自定義查詢字符串參數
<body>
<h2>Create a new email subscription</h2>
<p>This email address will recieve a message when a new order is placed.</p>
<%= form_for @changeset, subscription_path(@conn, :create), fn f -> %>
<label>
Email Address: <%= email_input f, :email_address %>
</label>
<%= submit "Submit" %>
<% end %>
</body>
它好像submit
是爲了支持一些opts
,但是,他們沒有證件。
https://hexdocs.pm/phoenix_html/Phoenix.HTML.Form.html#submit/2
有沒有一種方法,我可以通過其他參數,當用戶點擊「提交」請求?
你想總是傳遞額外的參數或點擊提交按鈕(即不是當只有當用戶按下輸入字段或使用任何其他方式提交表單)? – Dogbert
無論用戶提交表單的方式如何,我都需要這些參數。也許我應該使用'hidden_input' – sheldonkreger
是的,'hidden_input'是要走的路。 – Dogbert