我正在尝试从我的数据库中获取日期。有了我想使用 ng-show 的数据。
在我的 js 文件中:
httpq.post('/data/instructor.asmx/PasswordAgain', postData)
.then(function(data) {
$scope.informs = JSON.parse(data.d.result).Table;
if ($scope.informs.length > 0) {
$scope.Ins_Checking = $scope.informs[0];
}
})
.catch(function(data, status) {
$.showToast('error', $filter('translate')('MSG.ERROR'));
})
.finally(function() {
console.log("finally finished1");
});
在我的 html 文件(测试代码)中:
<div ng-repeat="inform in informs">
{{inform.Ins_Check}}
</div>
这是有效的。
问题 :
<div ng-show="Ins_Check != 'O'">
Input Password : <input type="password">
</div>
<div ng-show="Ins_Check == 'O'">
The password is Correct!
</div>
使用 DB 数据(inform.Ins_Check),如果数据不是“O”,则显示输入密码代码。或者,如果数据为“O”,则显示“密码正确!”字样。
我应该输入什么代码?
还是我应该使用其他功能?