如何在函数中添加链接到$ scope的变量

时间:2016-02-24 11:47:04

标签: javascript jquery angularjs

假设我们有一个定义为

的变量
 $scope.name = 'myName'

如何从JavaScript中的函数返回它,如此

function returnVar(){
alert 'this is the variable in Scope': name;
}

1 个答案:

答案 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?