使用离子动态添加组件

时间:2016-05-27 15:53:25

标签: angularjs ionic-framework components

我想知道有没有办法动态添加组件,因为我想做的事情: 当我点击我的按钮时,它会触发一个函数,在我的html中添加一个带有这些属性的新选择器:

 <select ng-change="test(selectedId)" ng-model="selectedId" ng-options="id.id as id.pseudo for id in idList"> </select>

和按钮:

<button ng-click="addSelector()">add selector</button>

1 个答案:

答案 0 :(得分:0)

控制器中的代码应该定义一个这样的点击处理程序:

   $scope.idList = ['first element', 'second element'];
   $scope.addSelector = function(){
     $scope.idList.push('new element');
   }