gpt4 book ai didi

javascript - 提交时的 AngularJS 验证

转载 作者:行者123 更新时间:2023-11-30 07:58:33 27 4
gpt4 key购买 nike

我有一个注册表单,我希望在用户点击提交时进行验证。这是 HTML 的样子:

<form ng-submit="RegistrationC.fireReg()" novalidate name="register">
<div class="row">
<div class="col-md-6 form-group">
<input type="text" autocomplete="off" class="form-control" placeholder="First Name" ng-model="RegistrationC.first_name" required name="first_name">
<div class="help-block" ng-messages="register.first_name.$error" ng-show="submitted && register.first_name.$error">
<p ng-message="required">This field is required.</p>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 form-group col-md-offset-3">
<button type="submit" class="btn btn-success btn-block" ng-click="submitted=true">Register Now</button>
</div>
</div>
</form>

如果未输入用户名,它会显示验证消息,但它仍然会提交。我错过了什么?

编辑 1

//init.js - RegistrationController
reg_list.fireReg = function () {
var url = 'user/register';
api.makeCall(reg_list, url)
.then(function (response) {
reg_list.response = response;
console.warn(response);
$location.path('/user/verify');
})
.catch(function (errorMessage) {
console.log("got an error in initial processing", errorMessage);
event.restoreButton();
});
};

我知道这个函数有问题,我会在稍后阶段修复它们。

最佳答案

只有在有效时才提交此表格。 <whatever_form_name>.$valid

<form ng-submit="register.$valid && RegistrationC.fireReg()" novalidate name="register">

关于javascript - 提交时的 AngularJS 验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34015622/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com