由于我在错误出现时没有收到/发送数据,我已经看过其他具有相同问题的查询但不是同一个问题。
当我点击按钮显示模态对话框时,就会出现错误。这是ng-click执行的代码:
$scope.copyCollection = function(ev, name, cid) {
angular.element(document).ready(function () {
$mdDialog.show({
controller: DialogController,
templateUrl: 'templateCopyCollection.html',
parent: angular.element(document.body),
targetEvent: ev,
clickOutsideToClose:true,
locals: {
name: name,
id: cid
}
})
.then(function(name_collection) {
angular.element(document).ready(function () {
service.copy_collection(name_collection, cid).then( function (response) {
console.info('copied', response);
}, function () {
console.info('error', response);
});
});
});
});
};
正如您所看到的,该函数首先显示对话框,并在出现错误时显示。
我不明白发生了什么,并且控制台中的错误没有显示在我的代码的哪个部分实现。
有什么想法吗?