Ionic之数据绑定ng-model

Posted liziyou

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ionic之数据绑定ng-model相关的知识,希望对你有一定的参考价值。

ionic 完美的融合下一代移动框架,ionic 基于Angular语法,支持 Angularjs 的特性。但是我在开发的时候,遇到了坑。因为之后用的就是angularjs,so 理所当然的以为代码应该时这样的写:

<div class="item item-input">
            <span>手 机 号:</span>  
            <input type="text" ng-model="phone">
        </div>

        <div class="item item-input">
            <span>验 证 码:</span>  
            <input type="text" ng-model="code">
            <button class="button button-calm" ng-click="ionGetCode()">获取验证码</button>
        </div>
        <div class="item item-input codeSuccess" >
            <span>新 密 码:</span>  
            <input type="text" ng-model="newPwd">
        </div>
        <div class="item item-input codeSuccess" >
            <span>确认密码:</span>  
            <input type="text" ng-model="confirm">
   </div>

  在页面:

{{phone}} //就可以直接获取你输入的值

但是在js中:

 console.log("userName:"+$scope.userName);
 console.log("$scope.phone:"+$scope.phone);  //无法获取输入的值

之后查了官网文档,也查了很多资料,才知道这样写也不行的,详细解释可以去官网http://ionicframework.com/docs/

<div class="item item-input">
            <span>手 机 号:</span>  
            <input type="text" ng-model="$parent.phone">
        </div>

        <div class="item item-input">
            <span>验 证 码:</span>  
            <input type="text" ng-model="$parent.code">
            <button class="button button-calm" ng-click="ionGetCode()">获取验证码</button>
        </div>
        <div class="item item-input codeSuccess" >
            <span>新 密 码:</span>  
            <input type="text" ng-model="$parent.newPwd">
        </div>
        <div class="item item-input codeSuccess" >
            <span>确认密码:</span>  
            <input type="text" ng-model="$parent.confirm">
        </div>

  

以上是关于Ionic之数据绑定ng-model的主要内容,如果未能解决你的问题,请参考以下文章

ng-model 指令

angularjs-双向数据绑定之输入框信息随时显示

如何在angularjs中的选择框或内部选项中使用ng-model?

范围问题中的角度绑定模型?

控制器 ng-model 数据与视图上的 ng-model 数据不同

Ionic App之国际化 json数组的处理