This is my HTML structure in Ionic project.
<div ng-model="pollPage.test.username">updated content</div>
{{pollPage.test.username}}
Controller:
vm.test = {
username : 'static',
}
When I use check my page, its getting 'static' text however it should be 'updated content'
Whats the problem? I guess everything is right but its not working. Thanks.
Your code is wrong it shoulbe like this:
You cant asign ng-model to a div it must be on elements I/0 like inputs, dropdowns, checks, etc.
Controller: