Can I trigger a form submit from a controller?

后端 未结 6 1469
独厮守ぢ
独厮守ぢ 2020-12-05 00:04

I\'d like to do a traditional form submit from within a controller. The scenario is that I want to hit a route on my web server and redirect to its response, which I can do

相关标签:
6条回答
  • 2020-12-05 00:37

    How about just out-right disabling the submit button until the form is valid:

    <button type="submit" ng-disabled="form.$invalid">Submit</button>
    

    Take a look at this similar question I had: AngularJS Form Validation with Directives - "myform.$valid" not quite right for me

    0 讨论(0)
  • 2020-12-05 00:49

    Expanding from @ReklatsMasters's answer, if you want to change a value before submitting the form, you could do like so...

    <form ng-form-commit action="/" name='payForm' method="post" target="_top">
        <input type="hidden" id="currency_code" name="currency_code" value="USD">
        <button type='button' ng-click='save('GBP', payForm)'>buy</button>
    </form>
    
    .directive("ngFormCommit", [function(){
        return {
            require:"form",
            link: function($scope, $el, $attr, $form) {
                $form.commit = function($newCurrency) {
                    $el[0].querySelector('#currency_code').value = $newCurrency;
                    $el[0].submit();
                };
            }
        };
    }])
    
    .controller("AwesomeCtrl", ["$scope", function($scope){
       $scope.save = function($newCurrency, $form) {
         if ($form.$valid) {
             $form.commit($newCurrency);
         }
       };
    }])
    
    0 讨论(0)
  • 2020-12-05 00:50

    You can add submit method to a FormController. I did so:

    <form ng-form-commit action="/" name='payForm' method="post" target="_top">
        <input type="hidden" name="currency_code" value="USD">
        <button type='button' ng-click='save(payForm)'>buy</button>
    </form>
    
    .directive("ngFormCommit", [function(){
        return {
            require:"form",
            link: function($scope, $el, $attr, $form) {
                $form.commit = function() {
                    $el[0].submit();
                };
            }
        };
    }])
    
    .controller("AwesomeCtrl", ["$scope", function($scope){
       $scope.save = function($form) {
         if ($form.$valid) {
             $form.commit();
         }
       };
    }])
    
    0 讨论(0)
  • 2020-12-05 00:53

    Did you try to use the ng-submit directive on your form? You may return true/false after your validation.

    Controller

    app.controller('MainCtrl', ['$location', function($scope, $location) {
      $scope.submit = function(user) {
        var isvalid = true;
        // validation 
        if (isvalid) {
            $http.get('api/check_something', {}).then(function(result) {
                $location.path(result.data);
            });
            return true;
        }
        return false; //failed
      }
    });
    

    Html (you must not have an action attribute)

    <form name="formuser" ng-submit="submit(user)">
        <input type="text" ng-model="user.firstname" />
        <input type="text" ng-model="user.lastname" />
        <button type="submit">Submit</button>
    </form>
    
    0 讨论(0)
  • 2020-12-05 00:55

    This is 'not the Angular' way to do it but you can submit the form using vanilla javascript. For example you can give the form an id and do:

    document.getElementById('myForm').submit()

    or if you have a submit button you can click it:

    document.getElementById('myForm-submit').click()

    I found that the first one did not keep the data bindings (I was using it on a project with a JQuery widget that had no Angular alternative), but the second one kept the bindings. I assume this has to do with how the JQuery widget was written.

    You can see more about triggering forms with vanilla JS here:

    How to submit a form using javascript?

    0 讨论(0)
  • 2020-12-05 00:57
    $scope.payForm.$setSubmitted();
    

    Sets the form to its $submitted state. This will also set $submitted on all child and parent forms of the form

    https://docs.angularjs.org/api/ng/type/form.FormController#$setSubmitted

    0 讨论(0)
提交回复
热议问题