如何将通用js文件中定义的常量访问不同模块的模板。

如果我在MainModule.js中定义了这样的常量,该常量包含在主html文件的开头

> var myApp = angular.module('AC' .....);
> myApp.constant('timeoutValue',5);

我可以通过将“timeoutValue”传递给我的controller.js中的常量。
但是我无法在我的template.html / partial中访问它。

如何在template.html /部分文件中访问“timeoutValue”

最佳答案

将其注入到控制器中并为其设置范围变量。

app.constant('timeoutValue', 5);

app.controller('someController', function($scope, timeoutValue) {
  $scope.timeoutValue = timeoutValue;
});

07-24 20:52