假设我们有一个定义为
的变量 $scope.name = 'myName'
如何从JavaScript中的函数返回它,如此
function returnVar(){
alert 'this is the variable in Scope': name;
}
答案 0 :(得分:3)
请参阅以下链接了解您的解决方案:
https://coderwall.com/p/smkwhg/access-scope-outside-of-angularjs
此外,Stackoverflow链接具有相同类型的讨论: How do I access the $scope variable in browser's console using AngularJS?