0
我想顯示json對象中所有字段的值。我能夠在對象中添加名字,電子郵件,密碼。但是我的確認密碼不顯示在對象中爲什麼?我輸入相同的密碼以確認密碼仍然沒有顯示如何在角js中顯示json合成器中的對象?
這裏是我的代碼
http://plnkr.co/edit/iHA8iQC1HM5OzZyIg4p3?p=preview
angular.module('app', ['ionic','ngMessages']).directive('compareTo',function(){
return {
require: "ngModel",
scope: {
otherModelValue: "=compareTo"
},
link: function(scope, element, attributes, ngModel) {
ngModel.$validators.compareTo = function(modelValue) {
// alert(modelValue == scope.otherModelValue)
return modelValue == scope.otherModelValue;
};
scope.$watch("otherModelValue", function() {
ngModel.$validate();
});
}
};
爲什麼確認密碼不顯示?
}).controller('first',function($scope){
})