We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
確か、
<form action="/sumari" method="get"> <div class="form-group"> <input type="checkbox" name="tag" value="tag1" > <input type="checkbox" name="tag" value="tag2" > <input type="checkbox" name="tag" value="tag3" > </div> <input type="submit" class="btn-info" value="検索"> </form>
とすると、/sumari?tags=hoge&tags=fuga と展開されたはず。 こちらの形式の方が自然だと思うので、この形でデータのやり取りをしたい
The text was updated successfully, but these errors were encountered:
nameに[]要るのでは <input type="checkbox" name="tag[]" value="tag1">
<input type="checkbox" name="tag[]" value="tag1">
Sorry, something went wrong.
フロントエンド側が実装でき次第こちらも対応します
uehara1414
defaultcf
b4h0-c4t
No branches or pull requests
確か、
とすると、/sumari?tags=hoge&tags=fuga と展開されたはず。
こちらの形式の方が自然だと思うので、この形でデータのやり取りをしたい
The text was updated successfully, but these errors were encountered: