Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Scope of ngController doesn't update with ngInclude #10148

Closed
oberien opened this issue Nov 20, 2014 · 2 comments
Closed

Scope of ngController doesn't update with ngInclude #10148

oberien opened this issue Nov 20, 2014 · 2 comments

Comments

@oberien
Copy link

oberien commented Nov 20, 2014

Here is a Plunker: http://plnkr.co/edit/F6QM4KUU8DPNq6muInGS?p=preview
Including an html file with ng-include, having set the ng-controller in the same tag, doesn't update the controller's scope models. Using the ng-model directly inside of the html works perfectly fine, and also setting the controller inside of the included html file is working. But ng-include together with ng-controller $scope.models don't update and stay as they are.
For whatever reason if you set the model inside of the controller, it is done suring it's loading. But having a method setting the model (not included in the plunker) only changes the mdoel inside of the controller's scope and not the html one.

Also if I use an ng-include in the scope of another controller and want to access the included models return undefined or the value you set the model to. Calling methods from the included html works fine in both cases, but they can't really operate as the values are wrong.

I saw that a similar issue has already been postet and should have been resolved (#4431), but as you can see in the plunker for me it doesn't.

Do I miss something, or is this a problem of angular?

Kind Regards,
BH16

@btford
Copy link
Contributor

btford commented Nov 20, 2014

This is expected behavior.

I recommend using controllerAs-style controllers to disambiguate which scope you're referencing. This will eliminate the problem.

If you need more help, I'd suggest posting to a support forum like StackOverflow.

@oberien
Copy link
Author

oberien commented Nov 22, 2014

Thank you very much, the controllerAs-style is ways better than anything else :)

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

2 participants