当库在全局范围内创建一个对象时,就像CodeMirror
那样,我如何在Angular 2中查看该对象?
说,我正在使用ng-codemirror
,它使用CodeMirror库,而后者又在全局范围内生成CodeMirror
个对象。在Angular 2应用程序中,如何从DevTools潜入CodeMirror.modes
?
答案 0 :(得分:0)
您需要在项目中导入CodeMirror
import 'codemirror';//or what ever the name is of that library.
在项目中导入代码镜像后,您应该能够拥有所需的全局范围。