AngularJS angular.bootstrap() 函数

AngularJS angular.bootstrap() 函数

AngularJS中的angular.bootstrap()函数是Core ng模块中的一个功能组件,用于手动启动Angular应用程序,它对应用程序的初始化提供了更多的控制。

语法:

angular.bootstrap(element, [modules], [config]);

参数值:

  • element:一个元素是一个DOM元素(如文档),是Angular应用程序的根。
  • modules:(可选)模块是一个要加载的模块阵列。
  • config:(可选)Config是一个用于配置选项的对象。

示例1:本示例描述了AngularJS中**angular.bootstrap()函数的用法。

<!DOCTYPE html>
<html>
  
<head>
    <title>angular.bootstrap() Function</title>
    <script src=
"https://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular.min.js">
    </script>
    <style>
        .id {
            font-size: 1.5em;
            color: green;
        }
    </style>
</head>
  
<body ng-app="app" style="text-align:Center">
    <h1 style="color:green">GeeksforGeeks</h1>
    <h2>angular.bootstrap()</h2>
    <div ng-controller="geek">
        <span class="id">{{name}}</span>
        is the computer science portal for geeks.
    </div>
    <script>
        var app = angular.module("app", []);
        app.controller('geek', ['scope', 
        function (scope) {
            $scope.name = "GeeksforGeeks";
        }]);
        angular.bootstrap(document, ['app']);
    </script>
</body>
  
</html>

输出:

AngularJS angular.bootstrap() 函数

示例2:本示例通过指定单选按钮,描述了AngularJS中**angular.bootstrap()函数的用法。

<!DOCTYPE html>
<html>
  
<head>
    <title>angular.bootstrap() Function</title>
    <script src=
"https://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular.min.js">
    </script>
</head>
  
<body ng-app="app" style="text-align:Center">
    <h1 style="color:green">
        GeeksforGeeks
    </h1>
      
    <h2>angular.bootstrap()</h2>
      
    <div ng-controller="geek">
        <div class="col-md-3 well" 
            ng-init="count=0"> Male:
            <input type="radio" ng-model="gender" 
            value="Male" 
            ng-change="layout(gender)" /> Female:
            <input type="radio" ng-model="gender" 
            value="Female" ng-change="layout(gender)" />
            <pre>
                <b>You selected:</b> {{result}} 
            </pre>
        </div>
    </div>
  
    <script>
        var app = angular.module("app", []);
        app.controller('geek', ['scope', 
        function (scope) {
            scope.layout = function (gender) {
                scope.result = gender;
            }
        }]);
        angular.bootstrap(document, ['app']);
    </script>
</body>
  
</html>

输出:

AngularJS angular.bootstrap() 函数

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程