Angular checkbox and ng-click

后端 未结 4 893
慢半拍i
慢半拍i 2020-12-03 02:08

Angular 1.2:


I don\'t have the right stat

4条回答
  •  南方客
    南方客 (楼主)
    2020-12-03 02:56

    The order of execution of ng-click and ng-model is different with angular 1.2 vs 1.6

    You must test, with 1.2 and 1.6,

    for example, with angular 1.2, ng-click get execute before ng-model, with angular 1.6, ng-model maybe get excute before ng-click.

    so you get 'true checked' / 'false uncheck' value maybe not you expect

提交回复
热议问题