angularjs – 如何在角度js中赋值改变

前端之家收集整理的这篇文章主要介绍了angularjs – 如何在角度js中赋值改变前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有简单的下拉绑定与角度模型
<select ui-select2="{allowClear:true}" ng-model="product.Id" ng-change="{value = product.Id == 0}" data-placeholder="Select Warranty">
      <option></option>
      <option ng-repeat="product in products" value="{{product.Id}}">{{product.Code}}</option>
</select>

我如何根据ng-change中的某些条件分配值?

您选择的值被定义为ng-model。在ng更改时,您可以从控制器调用方法,并向此方法提供“选定”ng模型。

这是一个例子:

<select                                               
        ng-model="product.Id"
        ng-options="filter as filter.name for filter in groupList"
        ng-change="changeItem(product.Id)"
         ></select>

调节器

$scope.changeItem = function(iem){

}

作为附注,我将使用ng选项而不是< option ng-repeat .....

原文链接:https://www.f2er.com/angularjs/144069.html

猜你在找的Angularjs相关文章