0

我在我的项目中使用来自我范围的数据的 ngDialog。我有一个名为 popupConge 的范围对象,我链接到 ngDialog 的数据:

ngDialog.open({ 
        template: 'saisieCongeModalPanel',
        className: 'ngdialog-theme-default width800',
        data: $scope.popupConge,
        scope: $scope,
    });

问题是当我更新 $scope.popupConge 时,我的模式面板中的数据没有更新。例如我有:<input type="text" id="motif" ng-model="ngDialogData.conge.motif"/>在我的 ngDialog. 当我更新 $scope.popupConge.conge.motif 时,输入字段没有更新:s

我做错什么了吗 ?

谢谢 !

4

1 回答 1

0

由于您要传递$scope给对话框,因此您应该使用 the popupConge.conge.motif

尝试这个。

<input type="text" id="motif" ng-model="popupConge.conge.motif"/>
于 2015-06-05T14:57:39.333 回答