Angular中$ scope.Variable和$ scope.Function之间的差异?

时间:2017-02-06 12:22:06

标签: javascript angularjs angularjs-scope angular-digest

$scope.some_random_variable = "random_value";
$scope.some_random_function = function(random_param){
    console.log("randomness");
} 

我想知道摘要周期的背景差异。 据我所知,scope_function改变了Angular Function的可见性。

1 个答案:

答案 0 :(得分:0)

基本上,在您的html或与$scope交互的任何内容中,声明为函数的$scope.something将在调用时启动,就像javascript函数的工作方式一样,相同作为变量,只有$scope和var之间的差异是$scope是全局调用。