我正在尝试远程连接到进程以尝试捕获系统关键错误。
我在客户端计算机上运行VS2015的远程调试监视器。我可以看到我要附加的进程,以及何时启动调试器。诊断工具无法正确启动此错误:
// Code goes here
var app = angular.module('myApp',[]);
// myDir Directive
app.directive('myDir', function() {
var controller = ['$scope','$compile', function ($scope,$compile) {
$scope.names=[{id:'1',directive:'subDir1'},{id:'2',directive:'subDir2'}];
$scope.loadDynamicDir = function(id, directive) {
var newScope = $scope.$new(true);
var html = $compile('<div class="' + directive + '"></div>')(newScope);
angular.element(document.getElementById('div' + id)).append(html);
}
}]
return {
controller:controller,
templateUrl:'myDirTemplate.html'
}
})
// subDir1 Directive
app.directive('subDir1', function() {
return {
restrict:'C',
template: 'subDir1'
}
});
// subDir2 Directive
app.directive('subDir2', function() {
return {
restrict:'C',
template: 'subDir2'
}
});
我下载了我的机器和远程机器(都是Windows 7)的更新,但是当我尝试运行它时,显然已经安装了更新。
发生了什么事?我对此有点饶恕,因为它阻止我整理出一个主要的错误。