我必须使用Angular js在重置密码表单中进行验证。 以下链接有助于解决我的问题: - http://jsfiddle.net/lsiv568/aRN5h/8/
但是在这个中,当我们在eclipse中运行时,包含该指令的文件充满了错误。任何人都可以解决它,它只是一个与括号相关的错误。我是Angular JS的新手,所以无法做到这一点。
有错误的代码在这里: -
'use strict';
app = angular.module('passwordMatchValidator', [])
app.directive 'passwordMatch', ->
require: 'ngModel'
link: (scope, elem, attrs, ctrl) ->
firstPasswordElement = angular.element(document.getElementById('password-to-verify'))
checkMatch = ->
scope.$apply ->
valid = elem.val() is firstPasswordElement.val()
ctrl.$setValidity 'passwordMatch', valid
for theElement in [firstPasswordElement, elem]
theElement.bind 'keyup', ->
checkMatch()
app.controller 'FormCtrl', ($scope) ->
$scope.resetPassword = (password) ->
alert 'resetting password'
angular.bootstrap document, ['passwordMatchValidator']`enter code here`