因此,我们可以像这样轻松地在 angular html 中使用范围变量:
<!doctype html>
<html ng-app>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.3/angular.min.js"></script>
</head>
<body>
<div>
<label>Name:</label>
<input type="text" ng-model="yourName" placeholder="Enter a name here">
<hr>
<h1>Hello {{yourName}}!</h1>
</div>
</body>
</html>
例如:
<h1>Hello {{yourName}}!</h1>
正在使用我希望做的范围内的
yourName
:<h1>Hello {{yourName}} you are in in {{$rootScope.zoneName}}!</h1>
是否可以像这样引入
$rootScope
变量? 最佳答案
您不需要在 html 中指定 $rootScope
。您可以像使用 $scope
变量一样使用它
刚从更新
<h1>Hello {{yourName}} you are in in {{$rootScope.zoneName}}!</h1>
到
<h1>Hello {{yourName}} you are in in {{zoneName}}!</h1>
关于angularjs - 在我的 html 中使用 rootScope 变量,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31707789/