如果两个输入值不同,我正在使用ng-show
来显示错误 - 一切正常,但是当视图加载时我在控制台中看到以下错误:
TypeError: object is not a function
模板中的代码:
<div class="alert alert-danger" ng-show="badpin">
The pins entered do not match!
</div>
我的控制器设置如下:
.controller('loginpinController', function($scope, $state) {
$scope.badpin = false;
似乎它没有将badpin
识别为布尔变量,而是作为对象?我该如何解决这个问题?