我在 Play Framework 中使用 scala 模板来创建我的视图。
用户需要在文本区域中输入一些文本。我想使用此文本发送到我的应用程序中的另一个视图。
<div class="ui form">
<div class="field">
<label>Please use the text box below</label>
<textarea>//this is the text that i need to grab</textarea>
</div>
@pet_order(petId, //this is where i send in the text)
</div>
谁能给我一些关于如何实现这一目标的建议?