-
-
Notifications
You must be signed in to change notification settings - Fork 690
Closed
Description
form :
<form action="http://localhost:3000/" method="post">
<p>
<input type="checkbox" checked="checked" name="pets" value="dog">狗
<input type="checkbox" checked="checked" name="pets" value="cat">猫
<input type="checkbox" name="pets" value="fish">鱼
</p>
<p>
<input type="submit" value="提交"/>
</p>
</form>parsed result by formidable :
{ pets: 'cat' }
actually, the right answer should be as following:
{ pets: [ 'dog', 'cat' ] }
Metadata
Metadata
Assignees
Labels
No labels