我是一个角度模块,它有一些配置代码,如:
<TableRow with weight=1>
<ImageView icon location with layout_weight=.2>
<EditText with layout_weight=.8 and
android:drawableRight="@drawable/arrow">
</TableRow>
现在我需要另一个新模块,它具有相同的配置和指令设置,不重复代码但有某种&#34; base&#34;的最佳方法是什么?模块,所以两者都可以从它继承,所以有相同的设置。感谢。
答案 0 :(得分:1)
您可以将公共代码放在单独的模块中,并将该模块添加到模块的依赖项列表中
//common.js
angular.module('common', []).config(...).directive(...);
然后使用它
angular.module('qrApp', ['common']);