angularjs 没有ng-type

作者: 竿牍 | 来源:发表于2017-04-08 12:34 被阅读26次

    背景:
    最近项目中,一个html input输入框用于金额输入,产品经理要求输入框聚焦时唤起的键盘必需是数字键盘,所以有两种选择type=tel或type=number,金额的合法性控制用自定义的angularjs指令。

    问题来了:
    type=number,ios手机唤起数字键盘,且能输入小数点,android部分手机数字键盘没有小数点(oppo手机);
    type=tel,ios手机数字键盘又没有小数点了,并且三星手机的数字键盘也没有小数点;
    所有我想到了用navigator.userAgent对这些情况作区分,设置不同的type,遗憾的是angularjs没有ng-type指令,所以我用ng-switch或ng-if做判断,代码是这样的,

    <div ng-switch on="elem.eleType">
      <input ng-switch-when="tel" type="tel" ng-model="obj.amount" />
      <input ng-switch-when="number" type="number"  ng-model="obj.amount" />
     </div>
    

    我高兴的发了基线,结果测试结果,提示输入金额非法,原因是取到的$scope.obj.amount的值是NaN,百思不得其解,
    坑就在这里,
    后来我发现把ng-switch去掉,$scope.obj.amount取到的值正常,

    最后想到了最直接的办法,

    <input type="{{elem.eleType}}" ng-model="obj.amount" />
    

    $scope.obj.amount取到的值正常,搞定!!!

    在找资料过程中看到这么一段:
    There’s hope: AngularJS 1.3 and AngularJS 2.0 have dropped support for Internet Explorer 8, so maybe we will see ng-type in future.

    this is my hope.

    相关文章

      网友评论

        本文标题:angularjs 没有ng-type

        本文链接:https://www.haomeiwen.com/subject/gdghattx.html