ng-controller指令和路由中的控制器有什么区别? [英] What is the difference between an ng-controller directive and a controller in the route?

查看:66
本文介绍了ng-controller指令和路由中的控制器有什么区别?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我浏览了AngularJS网站上的教程,并注意到在

I worked through the tutorial on the AngularJS website and I noticed that in at step 7, they change how a controller is introduced into the application. Initially, they use a directive:

<body ng-controller="PhoneListCtrl">
...
</body>

但是,稍后将其更改为使用controller属性作为ng-route的一部分.

However, it later gets changed to use a controller attribute as part of an ng-route.

$routeProvider.
    when('/phones', {
        templateUrl: 'partials/phone-list.html',
        controller: 'PhoneListCtrl'
    }). 
    /* rest of routes here */ 

在此处进行更改的 git diff .这两种技术之间有区别吗?

Here's the git diff where the change is made. Is there a difference between these two techniques?

推荐答案

使用 ng-controller 指令的控制器:

  • ng-controller元素上创建了一个新的$ scope.
  • 显式视图与控制器的连接
  • 与检查元素等可见
  • A new $scope is created on ng-controller element.
  • Explicit view-to-controller connection
  • Visible with inspect element, etc

路线中的控制器:

  • ng-view元素上为每个路由创建一个新的$ scope.
  • 控制器可以请求在路由解析中定义的依赖项.
  • 可选的视图到控制器连接.建议使用命名约定,以将到控制器的路由映射到视图.
  • A new $scope is created per route on the ng-view element.
  • The controller can request dependencies defined in the route resolve.
  • Optional view-to-controller connection. Recommended to have a naming convention that maps routes to controllers to views.

这篇关于ng-controller指令和路由中的控制器有什么区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆