首页 > 代码库 > 从浏览器的console获取angularjs的scope
从浏览器的console获取angularjs的scope
http://ionicframework.com/blog/angularjs-console/
1: Access Scopes
We can access any scope (even isolated ones!) on the page with a simple JS one-liner:
> angular.element(targetNode).scope()-> ChildScope {$id: "005", this: ChildScope, $$listeners: Object, $$listenerCount: Object, $parent: Scope…}
Or for isolated scopes:
> angular.element(targetNode).isolateScope()-> Scope {$id: "009", $$childTail: ChildScope, $$childHead: ChildScope, $$prevSibling: ChildScope, $$nextSibling: Scope…}
Where targetNode
is a reference to an HTML Node. You can grab one easily using document.querySelector()
.
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。