gpt4 book ai didi

angularjs - 将闭包编译器与 AngularJS 一起使用

转载 作者:行者123 更新时间:2023-12-02 12:23:37 25 4
gpt4 key购买 nike

我们一直在使用 AngularJS 开发一个大型产品,最近才尝试在 jsdoc 注释的帮助下使用闭包编译器进行语法检查。

我遇到了这个问题,并且在网上找不到任何帮助,包括在 SO 中。

考虑将模型类编写为服务,并使用类名作为类型:

ourmodule.factory('OurModel', function() {
/**
* @constructor
*/
var OurModel = function() {};

return OurModel;
});

ourmodule.controller('Controller1', ['$scope', 'OurModel', function($scope, OurModel) {
/**
* @return {OurModel}
*/
$scope.getNewModel = function () {
return new OurModel();
}
}]);

闭包编译器无法识别“OurModel”。我缺少什么?

最佳答案

闭包编译器无法猜测您注入(inject)到 Controller 的 OurModel 与您在工厂中声明的相同,AngularJS 注入(inject)模式使闭包编译器在这种情况下毫无用处。

如果您在父范围中声明 OurModel,则不会发出警告:

var ourmodule = {
factory: function(a, b){},
controller: function(a, b){}
};
/**
* @constructor
*/
var OurModel = function(){};

ourmodule.controller('Controller1', ['$scope', function($scope) {
/**
* @return {OurModel}
*/
$scope.getNewModel = function () {
return new OurModel();
}
}]);

关于angularjs - 将闭包编译器与 AngularJS 一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16242361/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com