Angularjs中手动引导的用途是什么?

时间:2017-10-14 07:09:02

标签: angularjs

我在一篇文章中读到Angular JS应用程序可以手动Bootstrapped.Manual Bootstrapping Angular应用程序的含义是什么?它是如何完成的?

1 个答案:

答案 0 :(得分:0)

如果您需要对初始化过程有更多控制权,可以使用手动引导方法。 请仔细阅读以下代码。

  <!doctype html>
<html>
<body>
  <div ng-controller="MyController">
    Hello {{greetMe}}!
  </div>
  <script src="http://code.angularjs.org/snapshot/angular.js"></script>

  <script>
    angular.module('myApp', [])
      .controller('MyController', ['$scope', function ($scope) {
        $scope.greetMe = 'World';
      }]);

    angular.element(function() {
      angular.bootstrap(document, ['myApp']);
    });
  </script>
</body>
</html>