I have this form
<form ng-submit="addState()">
<input ng-model="text1" type="text">
<input ng-model="text2" type="text">
<input ng-model="text3" type="text">
</form>
and this JS
mainAppControllers.controller('DoarScanCtrl', ['$scope', '$routeParams', '$location',
function($scope, $routeParams, $location){
}
]);
So First i need save the data in local storage and after this i need have a json
Thank you for any help!