ionic中獲取ng-model綁定的值為undefined如何解決

  • 150
  • 0

angularjs 初新者 地雷

今天參考了此篇文章

http://blog.csdn.net/lishihong108/article/details/52225933 lishihong的博客

發現是自己對於angularjs不夠熟悉。

當中有2種作法,我選擇了改動ng-control 的宣告位置

原本程式如下:

<ion-view ng-controller="MainCtrl">

改成如下:

<ion-view>
    <ion-content ng-controller="MainCtrl">

之後在JS 調用$scope取值就正常了…感動,被折騰了滿久的。