所以我正在尝试创建一个将数据发送到API的发布请求表单。如何从单选按钮中获取值?
我似乎无法在网上找到任何相关信息。
P.S我没有使用HTML表单功能
感谢。
编辑:这就是我要找的
<input type="radio" name="package" value="!!THIS!!">
答案 0 :(得分:1)
<div id="modal">
<div id="update">
<span class="closeBttn">X</span>
<form action="" method="post">
<fieldset>
<legend>Update Record</legend>
<p>
<label for="name">Name: </label><br />
<input type="text" id="name" name="name" />
</p>
<p>
<label for="subject">Subject: </label><br />
<input type="text" id="subject" name="subject" />
</p>
<p>
<label for="theory">Theory: </label><br />
<input type="text" id="theory" name="theory" />
</p>
<p>
<label for="practical">Practical: </label><br />
<input type="text" id="practical" name="practical" />
</p>
<p>
<input type="hidden" name="id" id="id" />
<input type="hidden" name="action" value="update" />
<input type="submit" name="submit" value="Update" />
</p>
</fieldset>
</form>
</div>
</div>
或$request->request->get('package');
使用Laravel Requests