IT博客汇
  • 首页
  • 精华
  • 技术
  • 设计
  • 资讯
  • 扯淡
  • 权利声明
  • 登录 注册

    $scope.$watch and controllerAs

    shendao发表于 2016-06-02 19:45:44
    love 0

    You know that by now your Angular code should be pretty $scope free. The controllerAs syntax makes it so you shouldn’t be accessing $scope in order to store information on it.

    But, scopes are still an important part of Angular and sometimes you have to use them.

    One not-so-rare example is the $scope.$watch() function. With the introduction of controllerAs syntax we now have 2 seemingly interchangeable ways to use it. But, they are not exactly the same and I think you should only be using one. Let’s quickly go over it.

    The olden days

    In the pre-controllerAs days we would put everything directly on the $scope .

    So, you might have $scope.foo and then, to watch for changes, you’d use $scope.$watch('foo', fooChanged) .

    That just worked. But with controllerAs it’s not that simple. If in your controller code you use this.foo , you can no longer just watch for changes using $scope.$watch('foo', ...) .

    That’s because the 'foo' part looking for foo directly on the scope, not your controller’s instance.

    The bad option – using the controller’s name

    The way a lot of people are solving this is by using the controller’s name in the expression.

    If you’re using Angular 1.5’s components then the controllerAs name is $ctrl by default. So you’d use $scope.$watch('$ctrl.foo', ...) .

    If you have a different name, like stuffCtrl then you’d use $scope.$watch('stuffCtrl.foo', ...) etc.

    I don’t like this for several reasons:

    • It feels foreign to me to use a name that’s essentially only used in the template (the controllerAs name), while the rest of the controller code uses this or vm .
    • Using this name means that in case you decide to rename it, you’ll have to look for it in both the template and the controller code.

    The right way

    It was always possible to pass a function to $watch() as the expression that you’re keeping track of.

    Because of that, it’s possible to do something like this:

    $scope.$watch(function() { return vm.foo; }, …)

    (Of course, it’s even nicer if you’re using ES6’s arrow functions.)

    I believe this is better, even though it involves more typing, because it keeps your controller code consistent. You always refer to things the same, and there are no magic strings.

    Do you have an existing Angular 1.x app that makes you worried about its future?

    You don’t want your app to be left behind and become legacy code .

    But it’s not easy clearing the time to learn Angular 2.

    And who has the energy to convince management that you need to change frameworks, delay your schedules and do the Big Ol’ Rewrite?

    But what if you could make sure your app keeps its options open?

    What if you could make it future-proof, all the while shipping features like a boss ?

    You’ll work in a codebase that uses the latest and greatest, have easy maintenance and happy stakeholders!

    The Future-proof Angular Guide can help you get there.

    With this no-fluff course you’ll learn how to quickly adapt your existing Angular 1.x app to the latest components paradigm, as you go about your regular work.

    You’ll gradually turn your app into something that is modern and idiomatic, converting directives and getting rid of controllers.

    And then, once your app is shaped The Right Way™, you’ll be able to keep shipping like a boss, and have your options open.

    Sign up to be notified when the course is ready (and get more of these pragmatic Angular posts in the meantime).

    转载本站任何文章请注明:转载至神刀安全网,谢谢神刀安全网 » $scope.$watch and controllerAs



沪ICP备19023445号-2号
友情链接