Angular JS将警报框更改为我文档上的实际文本

时间:2014-12-24 18:26:40

标签: javascript angularjs

我正在尝试修改某些代码,如果值不匹配则显示警报。这是下面的代码:

if (finalData.length>0) {
                        $scope.rowCollection = finalData;
                        $scope.displayedCollection = [].concat($scope.rowCollection);
                    }
                    // $scope.rowCollection = $scope.rowCollection2;
                    else {
                        //$scope.rowCollection.push(finalData);
                        //alert('values are not matching Belinda');


                    }
                    $scope.showTable = true;

我正在尝试删除警报并在文档上的表单下方显示0结果。不确定这是否有意义,但会感谢任何帮助,并能够回答任何问题,以达到正确的方向。

TIA!

亚特兰特

1 个答案:

答案 0 :(得分:0)

你可以在html中指定一个变量,该变量将在else部分

中设置

在html中,您要显示消息:

<span>{{$scope.resultsMsg}}</span>

和你的js

if (finalData.length>0) {
   $scope.rowCollection = finalData;
   $scope.displayedCollection = [].concat($scope.rowCollection);
}
// $scope.rowCollection = $scope.rowCollection2;
else {
   //$scope.rowCollection.push(finalData);
   //alert('values are not matching Belinda');
   $scope.resultsMsg = "0 results found.";
}
$scope.showTable = true;

双向变量绑定负责angularjs

中的其余部分