HTML part
<div ng-repeat="tag in tags">
<input type="text" ng-model="user.tags" />
</div>
Angular part
$scope.tags = []
$scope.addTag = function() {
$scope.tags.push({
})
}
var info = new FormData();
info.append("tags", $scope.tags);
so i want to store the data from all tag in tags in a single array. I need to pass that array to formData element info