我使用Supersonic& amp ;;开发应用程序Appgyver。我生成了两个新模块[default
& oAuth
]并删除"示例"来自新的默认类固醇应用。我在default
创建了一个工厂,我试图在dist/app/default/login.html
模块中调用它。
现在!在自动生成的<script src="/app/common.js"></script>
<script src="/app/default.js"></script>
(有问题的控制器)中只包含脚本
/app/oAuth.js
为什么不加载angular.module('common',
'supersonic',
'default',
'oAuth'
]);
?
我的共同指数:
public StringNode secondSmallest() {
return secondSmallest(root);
}
private StringNode secondSmallest(StringNode x) {
if(x==null);
//base case: if the left node is null -> smallest
if (x.getLeft()==null) {
//if there is only right child
if(x.getRight()!=null) {
return x.getRight();
}
//when there is no right node and smallest
return x;
}
//keep finding left node
else
return secondSmallest(x.getLeft());
}
据我所知,这应该坚持oAuth应该包含在我所有其他模块中。
为什么不自动添加oAuth.js?
答案 0 :(得分:0)
我不确定Supersonic是否应该添加这些文件。我相信它希望所有“共同”都在共同的模块中。您当然可以手动将文件添加到/ dist,但这很痛苦。