在Bootstrap模式关闭后将值设置回指令范围

时间:2017-11-25 08:28:10

标签: angularjs angularjs-directive angularjs-scope modal-dialog angularjs-ng-repeat

我正在实施一个小页面来创建发票。在发票中,我有一个发票明细表数组。它可以像这样表示

invoice = {
userName: "Mr A",
invoiceDetails:[{
location: "0,0"
}]
}

我为btnSelectLocation创建了一个像这个

的指令
invoiceManagementApp.directive("selectLocation", function () {
    return {
        restrict: "A",
        link: function (scope, element, attrs) {
            $(element).on("click", function () {
                $('#locationPickerModal').modal();
            });
        }
    };
});

现在,当locationPickerModal关闭时,我怎么能将值设置回"范围"。因为invoiceDetails是由用户动态添加或删除的

提前谢谢你,

0 个答案:

没有答案