将工厂与ng模块绑定是一种好习惯吗?

时间:2018-12-08 17:17:42

标签: javascript html angularjs frontend

下面,我尝试将工厂与ng模块绑定,这有助于我直接进行注入。

var module = angular.module("ng");

module.factory("commonService", ["$http"]);

谢谢。

1 个答案:

答案 0 :(得分:0)

我在这里得到了答案,没有模块就无法创建工厂。我们可以将工厂与ng模块绑定,但这不是一种好的做法。

找到答案here