zoukankan      html  css  js  c++  java
  • AngularJs(Part 1)

    I am tired to translate these into Chinese.

    but who cares? i write these posts just for myself


    Scope

    a new scope is created by the ng-controller directive using
    the Scope.$new() method call.
    yes , we need to have at least one instance of a scope before
    creating a new scope!
    so here is the $rootScope. it is the paremt of all the other
    scopes. the $rootScope instance gets created when a new
    application is bootstrapped.
    each scope contains a property $parent which points to its parent scope.

    ng-controller is a scope-created directive.
    there are many other scope-created directives.

    Scopes form a parent-child ,tree-like relationship rooted at
    the $rootScope instance. and scopes' creation is driven by the DOM tree.

    check the famous ng-repeat.
    let's say a HTML snippet<li ng-repeat='per in persons'>{{per.name}}</li>
    when interating persons, a new variable needs to be created to hold each per.
    it seems the Google does not use the strategy that just simplely override previous value.
    instead , it creats a new scope for each per and expose the scope to maybe the parent scope $scope.
    in this way, it's possible to create variable with the same name on different scopes without createing name collisions.
    in above snippet, every <li> element gets its own scope when the per variable can be defined.


    as i say above ,each $scope except the $rootScope contains a property $parent which pointing to parent scope,
    so all properties defined in parent scope is actually available to child scope.


    Scope's inheritance in AngularJs follws the same rules as prototypical inheritance in JavaScript.(when we try to read
    as property, the inheritance tree will be traversed upwards till a property is found.)

    Scopes are responsible to creat variables.
    they are to provide isolated namespaces and avoid name collisions.
    they can be destroyed and the garbage collection will deallocate the resource.


  • 相关阅读:
    ubuntu虚拟机下提示Network service discovery disabled
    jq简单实现选项卡--tab
    sublime text 出现错误error trying to parse file:Unexpected trailing characters in PackagesUserDefault(Windows).sublime-keymap:1:54
    sublime text 3设置快捷键让html文件在浏览器打开
    自动刷新浏览器
    项目---开饭了
    关于面试
    软件测试学习-关于三次握手与四次挥手的理解
    软件测试学习-笔记
    软件测试学习-数据库基础
  • 原文地址:https://www.cnblogs.com/formyjava/p/4166316.html
Copyright © 2011-2022 走看看