角度控制器$范围符号_

时间:2014-01-02 00:01:19

标签: javascript angularjs

App.controller('todoController', function ($scope) {
    // create a message to display in our view

    $scope.todos = [{ name: 'angular', done: false }];
    $scope.clearTodo = function () {

        $scope.todos = _.filter($scope.todos, function (todo) {
            return !todo.done;
        });
    };
});

问题 - 找不到符号_。 我需要添加什么?谢谢!

1 个答案:

答案 0 :(得分:1)

_。过滤器是Underscore.js'实用带'库的一部分。包括

<script src="//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.5.2/underscore-min.js"></script>

在HTML中的“head”部分内。