标签:通过 rtu img const tab turn ima ice 关系
以我们以前负责的Opportunity为例,直接创建一个新的js文件,然后用所有字段为大写格式的JSON对象来模拟constant。UI5 framework也是用的这种方式。
用constant方法注入:
app.constant('MONGOLAB_CONFIG', {
baseUrl: '/databases/',
dbName: 'ascrum'
});
在要使用这个常量的地方直接声明依赖,然后使用:
// 在provider的构造器函数中直接声明常量依赖
module.provider('b', function BProvider(a) {
this.$get = function() {
return 'constant: ' + a;
};
});
// 在service中声明常量依赖
module.service('aService', function(a) {
// ......
});
// 定义在最后也没关系:常量注入任务会通过unshift操作放到任务队列的头部
module.constant('a', 'aConstant');
要获取更多Jerry的原创文章,请关注公众号"汪子熙":
标签:通过 rtu img const tab turn ima ice 关系
原文地址:https://www.cnblogs.com/sap-jerry/p/12403954.html