新手问题,AngularJS,bootstrap modal 怎么获取数据
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了新手问题,AngularJS,bootstrap modal 怎么获取数据相关的知识,希望对你有一定的参考价值。
参考技术A modal的html最终也会引入到表格的html中的啊,也就是说在一个scope下,所以我的思路是可以绑定一个变量为行号,然后在modal中根据行号取出数组的元素进行AngularJS API之bootstrap启动
通过绑定来进行angular的初始化,会把js代码侵入到html中,但是对于新手使用来说,还是足够了!
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script src="http://apps.bdimg.com/libs/angular.js/1.2.16/angular.min.js"></script> </head> <body ng-app="myApp"> <div ng-controller="myCtrl"> {{ hello }} </div> <script type="text/javascript"> var myModule = angular.module("myApp",[]); myModule.controller("myCtrl",function($scope){ $scope.hello = "hello,angular!"; }); </script> </body> </html>
手动初始化
Angular中也提供了手动绑定的api——bootstrap,它的使用方式如下:
angular.bootstrap(element, [modules], [config]);
其中第一个参数element:是绑定ng-app的dom元素;
modules:绑定的模块名字
config:附加的配置
简单的看一下代码:
<html> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script src="http://apps.bdimg.com/libs/angular.js/1.2.16/angular.min.js"></script> <body id="body"> <div ng-controller="myCtrl"> {{ hello }} </div> <script type="text/javascript"> var app = angular.module("bootstrapTest",[]); app.controller("myCtrl",function($scope){ $scope.hello = "hello,angular from bootstrap"; }); // angular.bootstrap(document.getElementById("body"),[‘bootstrapTest‘]); angular.bootstrap(document,[‘bootstrapTest‘]); </script> </body> </html>
值得注意的是:
- angular.bootstrap只会绑定第一次加载的对象。
- 后面重复的绑定或者其他对象的绑定,都会在控制台输出错误提示。
以上是关于新手问题,AngularJS,bootstrap modal 怎么获取数据的主要内容,如果未能解决你的问题,请参考以下文章
在 Visual Studio 2013 中使用 angularjs 材料设计
如何集成 bootstrap-3.0.1 和 AngularJS?