我正在使用angular和Bootstrap进行角度(angular UI),当我打开模态(点击编辑列表)并选择一个国家进行编辑时,假设我更改了一个国家的名称,我不要在模态控制器的模型中看到它。所以这个值没有更新:$ ctrl.Country。
我迷失了,因为我在输入文本中使用了duoble binding:{{$ ctrl.Country.Name}}
这是我的Plunker
<a href="https://plnkr.co/edit/5JHKpdmLMVBFlmL22SGC?p=preview">Plunker</a>
由于
答案 0 :(得分:0)
尝试使用此plunkr修复了一些错误:
<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
$ctrl.Save
已添加:
modalInstance.result.then
:逻辑已修复