http://dingyonglaw.github.com/bootstrap-multiselect-dropdown/#formsを使用して、複数のチェック ボックスを含むドロップダウンを表示しています。
<li>
<label>
<input type="checkbox" name="filters" value="first value">
<span>First Value</span>
</label>
</li>
<li>
<label>
<input type="checkbox" name="filters" value="second value">
<span>Second Value</span>
</label>
</li>
結果の URL は次のとおりです。
http://example.com/search?filters=first+value&filters=second+value
サーバー側 (ボトル):
terms = unicode (request.query.get ('filters', ''), "utf-8")
「2番目の値」のみを提供し、「最初の値」を無視します。すべての「フィルター」値を収集する方法はありますか?