-
Notifications
You must be signed in to change notification settings - Fork 27.4k
feat(ngScopeAs): directive to save the current scope as an alias #8451
Conversation
This is useful when we need to access an outer scope in nested `ngRepeat` and generally in many of the places `$parent` is used to access an outer scope. Closes #8398
This can be used to do things like: <tr ng-repeat="row in rows" ng-scope-as="rowItems">
<td ng-repeat="col in row.columns" ng-scope-as="colItems">
{{ rowItems.$index }}.{{ colItems.$index }} - {{ col.value }}
</td>
</tr> But there are other cases where ppl use /cc @caitp @petebacondarwin WDYT? |
well I mean, $scope already has a built-in alias |
You would need something like this for that use case once we actually remove assignment expressions, but I wouldn't really count on that ever happening |
Yes. In fact the documentation says that the only reason anyone would need to use |
Well, even if the assignment operator is not going away any time soon, I think we should still try and move away from it. The |
Personally, I don't think it makes a lot of sense to deprecate assignment expressions, because they're frankly very useful --- but if we do we do. However, if the alternative is inventing a bunch of new tools to do the assignment for us, that doesn't seem that useful to me --- it would create more to maintain rather than less. |
Well, that's the whole imperative vs declarative debate I guess. Too late for that, going to sleep :) |
The I don't think adding a new |
I think I agree that this is not a good addition to core. It is fairly to implement in one's own app if needed. But I suspect that |
okay, closing then |
This is useful when we need to access an outer scope in nested
ngRepeat
and generally in many of the places$parent
is used to access an outer scope.Closes #8398