无法使用Angular UI和Modal更新模型

时间:2017-04-24 11:45:47

标签: angularjs angular-ui-bootstrap bootstrap-modal

我正在使用angular和Bootstrap进行角度(angular UI),当我打开模态(点击编辑列表)并选择一个国家进行编辑时,假设我更改了一个国家的名称,我不要在模态控制器的模型中看到它。所以这个值没有更新:$ ctrl.Country。

我迷失了,因为我在输入文本中使用了duoble binding:{{$ ctrl.Country.Name}}

这是我的Plunker

<a href="https://plnkr.co/edit/5JHKpdmLMVBFlmL22SGC?p=preview">Plunker</a> 

由于

1 个答案:

答案 0 :(得分:0)

尝试使用此plunkr修复了一些错误:

  1. <input type="text" class="form-control" ng-model="$ctrl.Country.Code"><input type="text" class="form-control" ng-model="$ctrl.Country.Code">ng-model代替value
  2. $ctrl.Save已添加:

  3. modalInstance.result.then:逻辑已修复