javascript - Angular 表单提交两次

标签 javascript angularjs html forms

所以我正在使用 ng-submit 和 ng-model 使用 angular js 制作用户注册表单。问题是当用户两次提交表单时触发。

我四处寻找常见原因,但没有一个符合要求。我没有两次声明我的 Controller ,我的提交按钮没有任何 ng-click 事件。

这是表单代码(这里可能有问题,我遗漏了)

<form class="form"  ng-submit="registerUser()">
    <div class="form-group row">
       <label for="user-fname">First Name</label>
       <div class="two-for-one">
          <input type="text" id="user-fname" name="user-fname" class="form-control" placeholder="first name" ng-model="userData.fname">
      </div>
      <label for="user-lname">Last Name</label>
      <div class="two-for-one">
        <input type="text" id="user-lname" name="user-lname" class="form-control" placeholder="last name" ng-model="userData.lname">
      </div>
    </div>
    <label for="email">Email</label>
    <input class="form-control" type="text" id="email" name="email" placeholder="Email" rel="popover" data-content="What’s your email address?" ng-model="userData.email">
     <label for="reg_password">Password</label>
     <input class="form-control" type="password" id="reg_password" name="reg_password" placeholder="Password" rel="popover" data-content="Please choose a password (minimum of 6 characters)" ng-model="userData.pw">
     <label for="reg_password_confirm">Confirm Password</label>
     <input class="form-control" type="password" id="reg_password_confirm" name="reg_password_confirm" placeholder="Confirm Password" rel="popover" data-content="Please confirm your password" ng-model="userData.cpw">
     <label for="mail">Want to be apart of our mailing list?</label>
     <input type="checkbox" id="mail" name="mail" value="1" ng-model="userData.mail">
     <button class="btn btn-success">Next</button>
 </form>

虽然我不认为它是这里的 js:

       $scope.userData = {
            acc_type: "user",
            mail:false,
        };
        $scope.registerUser = function() {
            loginRegsterService.registerUser($scope.userData).then(function(response){
                console.log(response);
            });
        };

最后一部分是使用http 发布数据的服务。它非常标准

        this.registerUser = function(data) {
            var req = {
                method: 'POST',
                url: location.protocol + '//' + location.host + '/models/register.php',
                headers: {
                    'Content-Type': 'application/json'
                },
                data: data
            }
            return $http(req).then(function(response) {
                return response.data;
            });
        };

感谢阅读和帮助!

哦,我忘了说除了提交两次之外所有这些都工作正常:\

除了 Angular Directive(指令)之外,html 是有效的。

最佳答案

如果您创建一个具有表单的子组件并使用 EventEmitter 向父组件发出 submit/search 事件,就会发生这种情况。然后父组件将同时接收您的事件和 native 事件。 您应该在子组件中重命名 eventEmmiter,例如:

// Child component
@Output() submitForm = new EventEmitter();
@Output() searchSomething = new EventEmitter();

代替

@Output() submit = new EventEmitter();
@Output() search = new EventEmitter();

关于javascript - Angular 表单提交两次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29521844/

相关文章:

Javascript 数组检查和组合

javascript - 如何使用 AngularJS 将一个 .js 文件用于多个 .html 页面

javascript - 使用 NgTable 过滤选择

html - 防止移动浏览器缩放一个 HTML 元素

php - 仅在一页上动态调整 div 大小?

javascript - 将表单数据拉入nodemailer

javascript - 剑道时间选择器中的格式错误

html - CSS 选择器层次结构?如何通过逆向工程获得样式?

javascript - 重新启动 JavaScript 中的方法

javascript - 指令和 Controller 之间的通信,中间有中间范围