无法使用 Angular UI 和 Modal 更新模型
Not able to update the model with Angular UI and Modal
我正在为 angular (angular UI) 使用 angular 和 Bootstrap,当我打开模式(单击“编辑列表”)和 select 一个要编辑的国家,比方说我更改了一个国家的名称,我没有看到它反映在模态控制器的模型中。所以这个值没有更新:$ctrl.Country.
我在输入文本中使用双重绑定时迷路了:{{$ctrl.Country.Name}}
这是我的 Plunker
<a href="https://plnkr.co/edit/5JHKpdmLMVBFlmL22SGC?p=preview">Plunker</a>
谢谢
试试这个 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
:逻辑已修复
我正在为 angular (angular UI) 使用 angular 和 Bootstrap,当我打开模式(单击“编辑列表”)和 select 一个要编辑的国家,比方说我更改了一个国家的名称,我没有看到它反映在模态控制器的模型中。所以这个值没有更新:$ctrl.Country.
我在输入文本中使用双重绑定时迷路了:{{$ctrl.Country.Name}}
这是我的 Plunker
<a href="https://plnkr.co/edit/5JHKpdmLMVBFlmL22SGC?p=preview">Plunker</a>
谢谢
试试这个 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
:逻辑已修复