我有一个简单的Angular脚本,它像ajax一样返回搜索结果,但是当我没有在搜索框中输入任何内容时,它会列出数据库中的所有数据,如何阻止它?
答案 0 :(得分:1)
而不是仅使用null检查空字符串
进行验证if($scope.keywords==null || $scope.keywords.trim()==""){
$scope.trustedExample = $sce.trustAsHtml("<p>Please enter some text in search field</p>");
}
答案 1 :(得分:0)
您可以使用内置过滤器limitTo: <Any Limitation Number>