您好,尝试显示来自控制器作用域的文本。

这里尝试了什么:

的HTML:

<div ng-repeat="item in sResults"></div>


控制器JS:

$scope.sResults = [];
function App( ){
            var Label = ‘a’;
            var demo = [“a”,”b”,’c’,’d’];

            jQuery.each( demo, function( index, value) {
                debugger;
                if(scopeLabel==value){
                    debugger;
                    $scope.sResults.push(value);
                }
            });
        }

最佳答案

您没有将项目打印到html中

  <div ng-repeat="item in sResults">{{item}}</div>

09-27 03:50