Ionic v1 ng-model doesn't update

529 Views Asked by At

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.

2

There are 2 best solutions below

0
On

Your code is wrong it shoulbe like this:

<div ng-controller="yourController as vm">    
    <input type="text" ng-model="vm.pollPage.test.username">
    <div>{{pollPage.test.username}}</div>
</div>

You cant asign ng-model to a div it must be on elements I/0 like inputs, dropdowns, checks, etc.

Controller:

 var vm = this;

  vm.pollPage = {};
  vm.pollPate.test = {
    username : 'static',
  }
0
On

ng-model should be on an element that its content changes like: input, select, textarea...etc