Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
HTML に非表示の入力フィールドがあり、SomeValue が含まれています。
<input id="event_id" type="hidden"> SomeValue </input>
サーバー側で SomeValue が必要です。
使用できる SHtml メソッドはありますか? 次のコードは、送信時に値を取得する必要があります。ページが読み込まれると値が必要になります。
"event_id" #> SHtml.onSubmit(id = _)
テンプレートには、次のように書くことができます
<input id="event_id"></input>
SHtml.hiddenスニペットでは、次の方法を使用できます。
SHtml.hidden
SHtml.hidden(() => println("hidden field"))