Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法区分从控制器声明的范围变量或使用 ng-model 指令?如何在代码中区分它们?
例子
$scope.testScopeVar& `ng-model="testVal"
$scope.testScopeVar
我真的很想知道,有没有办法做到这一点?
我很确定答案是否定的,您无法以编程方式区分范围变量的来源。一旦它们进入作用域,它们就是普通的旧 JavaScript 对象。您能做的最好的事情就是建立一个命名约定并在您自己的应用程序代码中遵守它。