angularjs 的controller的三种写法
Posted 十步杀一人千里不留行
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了angularjs 的controller的三种写法相关的知识,希望对你有一定的参考价值。
AngularJS 的controller其实就是一个方法,它有三种写法:
第一种:
- <pre name="code" class="javascript">var AppController = [‘$scope‘, function($scope){
- $scope.notifyServiceOnChage = function(){
- console.log($scope.windowHeight);
- };
- }];
- app.controller(‘AppController‘,AppController);
在定义AppController的时候,先声明方法需要注入的参数,然后再定义方法体。最后将AppController绑定到app上。
第二种:
- app.controller(‘AppController‘, function($scope){
- $scope.notifyServiceOnChage = function(){
- console.log($scope.windowHeight);
- };
- })
直接在app的controller属性定义,首先是controller名字,然后是方法体。
第三种:
- function AppController($scope) {
- $scope.notifyServiceOnChage = function(){
- console.log($scope.windowHeight);
- };
- }
直接写方法,然后在ng-controller引用该方法
摘自:http://blog.csdn.net/teddyu_leo/article/details/49816721
以上是关于angularjs 的controller的三种写法的主要内容,如果未能解决你的问题,请参考以下文章
jQuery 跨域访问的三种方式 No 'Access-Control-Allow-Origin' header is present on the reque