Directives with Isolated scope versions conflict

前端 未结 1 599
有刺的猬
有刺的猬 2021-01-21 06:14

In my Angular app, i have a directive \"editable\". It written on Angular version 1.2.0-rc.2 and worked well, but when I upgraded framework to version 1.2.13 - directive broke.

相关标签:
1条回答
  • 2021-01-21 06:48

    First understanding

    They actually changed something in the way the contents are compiled against a determined scope in case of an isolated scope.

    Breaking Changes from version 1.2.0

    Please see their breaking changes brought with version 1.2.0 :

    • $compile:
      • due to d0efd5ee, Child elements that are defined either in the application template or in some other directives template do not get the isolate scope. In theory, nobody should rely on this behavior, as it is very rare - in most cases the isolate directive has a template.
      • due to 909cabd3, Directives without isolate scope do not get the isolate scope from an isolate directive on the same element. If your code depends on this behavior (non-isolate directive needs to access state from within the isolate scope), change the isolate directive to use scope locals to pass these explicitly.

    In your specific case, your edit button cannot access the properties and methods you implemented on the isolated scope. You were able to do that temporarily in those "rc" versions.

    Fast solution

    Don't use isolated scope for your directive.

    Deeper solution

    You are actually doing something quite weird. You create an isolated scope to get ngModel binded to the scope used by your directive.

    But, working with the ngModel directive doesn't work that way. You have to require the ngModelController instance added by the ngModel directive, using a directive property called require, that you will fill with the name of the directive your are requiring the controller of, that is to say "ngModel". Then the forth argument of your link function will refer to the ngModelController instance which is quite well documented on the Angular documentation.

    So ! :

    • don't use isolated scope when you don't need it
    • remember isolated scope is not directly accessible on the element itself anymore, except using the $$childHead property of course ... but you should not do that !

    0 讨论(0)
提交回复
热议问题