I'm working in Angularjs application and I have a simple form. I need create a simple way to get all form data, something like jQuery serialize. But I thing data binding isn't a good solution. My form'll have some "fields" like this:
<div class="multiselect-container" >
<label>Countries:</label>
<ul>
<li ng-repeat="country in countries" >
<input type="checkbox" id="country_{{country.id}}" value="{{country.id}}" />
<label for="country_{{country.id}}" >{{ country.name }}</label>
</li>
</ul>
Each "field" I a can select a set of elements. Someone can tell me a good way to solve implement ().
Thanks!