码迷,mamicode.com
首页 > 其他好文 > 详细

Angular 1.x下 select 的一个巨大的坑

时间:2016-10-24 14:02:21      阅读:651      评论:0      收藏:0      [点我收藏+]

标签:技术   push   return   spec   content   rtt   values   efault   org   

双向绑定这个特性有时让人又爱又恨

假设控制器

function($scope){

$scope.options = [{name:”alex”,id:232,…},{…},{…}…];

$scope.myModel = {name:”alex”,id:232};

}

<select ng-model=”myModel.id”>

<option value=””>—请选择—</option>

<option ng-repeat=”opt in options” value=”{{opt.id}}” >

{{opt.name}}

</option>

</select>

ok,这段看起来很寻常的代码会出现问题

inspect一下

技术分享

?number:45?

多次调试发现不是程序写得有问题

这个是angular中select的一个缺陷

以下是官方说法

To bind the model to a non-string value, you can use one of the following strategies:

  • the ngOptions directive (select)
  • the ngValue directive, which allows arbitrary expressions to be option values (Example)
  • model $parsers / $formatters to convert the string value (Example)

然而我尝试了ngOptions时依然无效

最终解决方案:

app.directive(‘convertToNumber’, function () {
return {
require: ‘ngModel’,
link: function (scope, element, attrs, ngModel) {
ngModel.$parsers.push(function (val) {
return val != null ? parseInt(val, 10) : null;
});
ngModel.$formatters.push(function (val) {
return val != null ? ” + val : null;
});
}
};
});

Angular 1.x下 select 的一个巨大的坑

标签:技术   push   return   spec   content   rtt   values   efault   org   

原文地址:http://www.cnblogs.com/AlexNull/p/5992344.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!