我有一个像这样的控制器:

<div ng-controller="MainController as main" class="containerWrap">


我试图选择我的控制器以进一步发挥作用:-

var a = document.querySelector('[ng-controller=MainController as main]');
var b = angular.element(chatElement).scope();


它给出一个错误:-

Uncaught SyntaxError: Failed to execute 'querySelector' on 'Document': '[ng-controller=MainController as main]' is not a valid selector.


我也尝试了MainController:-

那给:-

a=null
b=undefined


有人可以帮忙吗?

最佳答案

var a = document.querySelector('[ng-controller="MainController as main"]');

关于javascript - Angular Js中 Controller 的文档查询选择器,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28473616/

10-09 17:51